Package com.soffid.iam.model
Interface HostPortEntityDao
-
- All Known Implementing Classes:
HostPortEntityDaoBase,HostPortEntityDaoImpl
public interface HostPortEntityDaoDAO for Entity HostPortEntity- See Also:
HostPortEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcreate(HostPortEntity entity)Adds an instance ofHostPortEntityto the persistent store.voidcreate(Collection<? extends HostPortEntity> entities)Creates a collection ofHostPortEntityand adds it to the persistent store.HostPortEntityhostPortToEntity(com.soffid.iam.api.HostPort instance)Transforms fromHostPortobjectvoidhostPortToEntity(com.soffid.iam.api.HostPort source, HostPortEntity target, boolean copyIfNull)Copy data fromHostPortobjectList<HostPortEntity>hostPortToEntityList(Collection<com.soffid.iam.api.HostPort> instances)Transforms fromHostPortlistHostPortEntityload(Long id)Loads an instance ofHostPortEntityfrom the persistent store.List<HostPortEntity>loadAll()Loads all instances ofHostPortEntityfrom the persistent store.HostPortEntitynewHostPortEntity()Creates an instance ofHostPortEntity.List<HostPortEntity>query(String query, Parameter[] parameters)Query ofHostPortEntityfrom the persistent store.List<HostPortEntity>query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)Query ofHostPortEntityfrom the persistent store.voidremove(HostPortEntity entity)Removes an instance ofHostPortEntityfrom the persistent store.voidremove(Long id)Removes an instance ofHostPortEntityfrom the persistent store.voidremove(Collection<? extends HostPortEntity> entities)Removes a collection ofHostPortEntityfrom the persistent store.com.soffid.iam.api.HostPorttoHostPort(HostPortEntity entity)Transforms toHostPortobjectvoidtoHostPort(HostPortEntity source, com.soffid.iam.api.HostPort target)Copy data toHostPortobjectList<com.soffid.iam.api.HostPort>toHostPortList(Collection<HostPortEntity> entities)Transforms toHostPortlistvoidupdate(HostPortEntity entity)Updates an instance ofHostPortEntityat the persistent store.voidupdate(Collection<? extends HostPortEntity> entities)Updates a collection ofHostPortEntityin the persistent store.
-
-
-
Method Detail
-
toHostPort
void toHostPort(HostPortEntity source, com.soffid.iam.api.HostPort target)
Copy data toHostPortobject
-
toHostPort
com.soffid.iam.api.HostPort toHostPort(HostPortEntity entity)
Transforms toHostPortobject
-
toHostPortList
List<com.soffid.iam.api.HostPort> toHostPortList(Collection<HostPortEntity> entities)
Transforms toHostPortlist
-
hostPortToEntity
void hostPortToEntity(com.soffid.iam.api.HostPort source, HostPortEntity target, boolean copyIfNull)Copy data fromHostPortobject
-
hostPortToEntity
HostPortEntity hostPortToEntity(com.soffid.iam.api.HostPort instance)
Transforms fromHostPortobject
-
hostPortToEntityList
List<HostPortEntity> hostPortToEntityList(Collection<com.soffid.iam.api.HostPort> instances)
Transforms fromHostPortlist
-
newHostPortEntity
HostPortEntity newHostPortEntity()
Creates an instance ofHostPortEntity.
-
create
void create(HostPortEntity entity)
Adds an instance ofHostPortEntityto the persistent store.
-
update
void update(HostPortEntity entity)
Updates an instance ofHostPortEntityat the persistent store.
-
remove
void remove(HostPortEntity entity)
Removes an instance ofHostPortEntityfrom the persistent store.
-
load
HostPortEntity load(Long id)
Loads an instance ofHostPortEntityfrom the persistent store.
-
loadAll
List<HostPortEntity> loadAll()
Loads all instances ofHostPortEntityfrom the persistent store.
-
create
void create(Collection<? extends HostPortEntity> entities)
Creates a collection ofHostPortEntityand adds it to the persistent store.
-
update
void update(Collection<? extends HostPortEntity> entities)
Updates a collection ofHostPortEntityin the persistent store.
-
remove
void remove(Collection<? extends HostPortEntity> entities)
Removes a collection ofHostPortEntityfrom the persistent store.
-
remove
void remove(Long id)
Removes an instance ofHostPortEntityfrom the persistent store.
-
query
List<HostPortEntity> query(String query, Parameter[] parameters)
Query ofHostPortEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<HostPortEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofHostPortEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-