Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[eclipselink-users] Any idea when TypedQuery createNamedQuery will be implemented ?

Hi,

I wanted to create a named typed query but I get an UnsupportedOperationException (I'm using EclipseLink 2.0.0) :

public class EntityManagerImpl ... {
    public <T> TypedQuery<T> createNamedQuery(String name, Class<T> resultClass){
        throw new UnsupportedOperationException();
    }
}

Do you know if/when this feature will be implemented ?

Thanks,
Antonio

Back to the top