Package com.soffid.iam.model
Interface CustomObjectAttributeEntityDao
-
- All Known Implementing Classes:
CustomObjectAttributeEntityDaoBase
,CustomObjectAttributeEntityDaoImpl
public interface CustomObjectAttributeEntityDao
DAO 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 ofCustomObjectAttributeEntity
to the persistent store.
-
update
void update(CustomObjectAttributeEntity entity)
Updates an instance ofCustomObjectAttributeEntity
at the persistent store.
-
remove
void remove(CustomObjectAttributeEntity entity)
Removes an instance ofCustomObjectAttributeEntity
from the persistent store.
-
load
CustomObjectAttributeEntity load(Long id)
Loads an instance ofCustomObjectAttributeEntity
from the persistent store.
-
loadAll
List<CustomObjectAttributeEntity> loadAll()
Loads all instances ofCustomObjectAttributeEntity
from the persistent store.
-
create
void create(Collection<? extends CustomObjectAttributeEntity> entities)
Creates a collection ofCustomObjectAttributeEntity
and adds it to the persistent store.
-
update
void update(Collection<? extends CustomObjectAttributeEntity> entities)
Updates a collection ofCustomObjectAttributeEntity
in the persistent store.
-
remove
void remove(Collection<? extends CustomObjectAttributeEntity> entities)
Removes a collection ofCustomObjectAttributeEntity
from the persistent store.
-
remove
void remove(Long id)
Removes an instance ofCustomObjectAttributeEntity
from the persistent store.
-
query
List<CustomObjectAttributeEntity> query(String query, Parameter[] parameters)
Query ofCustomObjectAttributeEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<CustomObjectAttributeEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofCustomObjectAttributeEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-