when use namedQuery in entity class get error
  @NamedQuery(name = "Classification.search", query = "SELECT c FROM Classification c WHERE c.id LIKE  :value")
Method for call namedQuery
public List<Classification> search(String value) {
    Query query = getEntityManager().createNamedQuery("Classification.search", Classification.getClass()).setParameter("value", "%"+value+"%");
    query.setMaxResults(10);
    return query.getResultList();
}
java.lang.IllegalArgumentException: You have attempted to set a value of type class java.lang.String for parameter value with expected type of class java.lang.Integer from query string SELECT c FROM Classification c WHERE c.id LIKE :value.
but when use this method is work without Error.
public List<Classification> findLimited(String _clasif, int maxResult) {
    String querySt = "SELECT c FROM Classification c WHERE c.id LIKE '%" + _clasif + "%'";
    Query query = em.createQuery(querySt);
    query.setMaxResults(maxResult);
    List<Classification> classif;
    classif = query.getResultList();
    if (classif != null) {
        return classif;
    }
    return new ArrayList<>();
}
i use eclipselink 2.6 with JPA
                        
i solve that by this code.
this method get namedQuery string from entity class by nameKey and class.