All Downloads are FREE. Search and download functionalities are using the official Maven repository.

play.db.jpa.JPASupport Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
package play.db.jpa;

import javax.persistence.Query;

/**
 * Use play.db.jpa.GenericModel insteads
 */
@Deprecated
public class JPASupport extends GenericModel {

    /**
     * Use play.db.jpa.GenericModel.JPAQuery insteads
     */
    @Deprecated
    public static class JPAQuery extends GenericModel.JPAQuery {
        
        public JPAQuery(String sq, Query query) {
            super(sq, query);
        }

        public JPAQuery(Query query) {
            super(query);
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy