Interface JPAJSONAnyDAO
-
- All Known Implementing Classes:
MaJPAJSONAnyDAO
,MyJPAJSONAnyDAO
,OJPAJSONAnyDAO
,PGJPAJSONAnyDAO
public interface JPAJSONAnyDAO
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <A extends Any<?>>
voidcheckBeforeSave(String table, AnyUtils anyUtils, A any)
<A extends Any<?>>
List<A>findByDerAttrValue(String table, AnyUtils anyUtils, DerSchema schema, String value, boolean ignoreCaseMatch)
<A extends Any<?>>
Optional<A>findByPlainAttrUniqueValue(String table, AnyUtils anyUtils, PlainSchema schema, PlainAttrUniqueValue attrUniqueValue, boolean ignoreCaseMatch)
<A extends Any<?>>
List<A>findByPlainAttrValue(String table, AnyUtils anyUtils, PlainSchema schema, PlainAttrValue attrValue, boolean ignoreCaseMatch)
-
-
-
Method Detail
-
findByPlainAttrValue
<A extends Any<?>> List<A> findByPlainAttrValue(String table, AnyUtils anyUtils, PlainSchema schema, PlainAttrValue attrValue, boolean ignoreCaseMatch)
-
findByPlainAttrUniqueValue
<A extends Any<?>> Optional<A> findByPlainAttrUniqueValue(String table, AnyUtils anyUtils, PlainSchema schema, PlainAttrUniqueValue attrUniqueValue, boolean ignoreCaseMatch)
-
findByDerAttrValue
<A extends Any<?>> List<A> findByDerAttrValue(String table, AnyUtils anyUtils, DerSchema schema, String value, boolean ignoreCaseMatch)
-
-