Package com.soffid.iam.model
Interface CustomObjectAttributeEntityDao
-
- All Known Implementing Classes:
CustomObjectAttributeEntityDaoBase,CustomObjectAttributeEntityDaoImpl
public interface CustomObjectAttributeEntityDaoDAO for Entity CustomObjectAttributeEntity- See Also:
CustomObjectAttributeEntity
-
-
Method Summary
-
-
-
Method Detail
-
findByTypeNameAndValue
List<CustomObjectAttributeEntity> findByTypeNameAndValue(String type, String name, String value)
Operation findByTypeNameAndValue- Parameters:
type-name-value-- Returns:
-
findByTypeNameAndValue
List<CustomObjectAttributeEntity> findByTypeNameAndValue(CriteriaSearchConfiguration criteria, String type, String name, String value)
CriteriaSearchConfiguration finder
-
newCustomObjectAttributeEntity
CustomObjectAttributeEntity newCustomObjectAttributeEntity()
Creates an instance ofCustomObjectAttributeEntity.
-
create
void create(CustomObjectAttributeEntity entity)
Adds an instance ofCustomObjectAttributeEntityto the persistent store.
-
update
void update(CustomObjectAttributeEntity entity)
Updates an instance ofCustomObjectAttributeEntityat the persistent store.
-
remove
void remove(CustomObjectAttributeEntity entity)
Removes an instance ofCustomObjectAttributeEntityfrom the persistent store.
-
load
CustomObjectAttributeEntity load(Long id)
Loads an instance ofCustomObjectAttributeEntityfrom the persistent store.
-
loadAll
List<CustomObjectAttributeEntity> loadAll()
Loads all instances ofCustomObjectAttributeEntityfrom the persistent store.
-
create
void create(Collection<? extends CustomObjectAttributeEntity> entities)
Creates a collection ofCustomObjectAttributeEntityand adds it to the persistent store.
-
update
void update(Collection<? extends CustomObjectAttributeEntity> entities)
Updates a collection ofCustomObjectAttributeEntityin the persistent store.
-
remove
void remove(Collection<? extends CustomObjectAttributeEntity> entities)
Removes a collection ofCustomObjectAttributeEntityfrom the persistent store.
-
remove
void remove(Long id)
Removes an instance ofCustomObjectAttributeEntityfrom the persistent store.
-
query
List<CustomObjectAttributeEntity> query(String query, Parameter[] parameters)
Query ofCustomObjectAttributeEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<CustomObjectAttributeEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofCustomObjectAttributeEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-