Package com.soffid.iam.model
Interface HostPortEntityDao
-
- All Known Implementing Classes:
HostPortEntityDaoBase
,HostPortEntityDaoImpl
public interface HostPortEntityDao
DAO for Entity HostPortEntity- See Also:
HostPortEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
create(HostPortEntity entity)
Adds an instance ofHostPortEntity
to the persistent store.void
create(Collection<? extends HostPortEntity> entities)
Creates a collection ofHostPortEntity
and adds it to the persistent store.HostPortEntity
hostPortToEntity(com.soffid.iam.api.HostPort instance)
Transforms fromHostPort
objectvoid
hostPortToEntity(com.soffid.iam.api.HostPort source, HostPortEntity target, boolean copyIfNull)
Copy data fromHostPort
objectList<HostPortEntity>
hostPortToEntityList(Collection<com.soffid.iam.api.HostPort> instances)
Transforms fromHostPort
listHostPortEntity
load(Long id)
Loads an instance ofHostPortEntity
from the persistent store.List<HostPortEntity>
loadAll()
Loads all instances ofHostPortEntity
from the persistent store.HostPortEntity
newHostPortEntity()
Creates an instance ofHostPortEntity
.List<HostPortEntity>
query(String query, Parameter[] parameters)
Query ofHostPortEntity
from the persistent store.List<HostPortEntity>
query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofHostPortEntity
from the persistent store.void
remove(HostPortEntity entity)
Removes an instance ofHostPortEntity
from the persistent store.void
remove(Long id)
Removes an instance ofHostPortEntity
from the persistent store.void
remove(Collection<? extends HostPortEntity> entities)
Removes a collection ofHostPortEntity
from the persistent store.com.soffid.iam.api.HostPort
toHostPort(HostPortEntity entity)
Transforms toHostPort
objectvoid
toHostPort(HostPortEntity source, com.soffid.iam.api.HostPort target)
Copy data toHostPort
objectList<com.soffid.iam.api.HostPort>
toHostPortList(Collection<HostPortEntity> entities)
Transforms toHostPort
listvoid
update(HostPortEntity entity)
Updates an instance ofHostPortEntity
at the persistent store.void
update(Collection<? extends HostPortEntity> entities)
Updates a collection ofHostPortEntity
in the persistent store.
-
-
-
Method Detail
-
toHostPort
void toHostPort(HostPortEntity source, com.soffid.iam.api.HostPort target)
Copy data toHostPort
object
-
toHostPort
com.soffid.iam.api.HostPort toHostPort(HostPortEntity entity)
Transforms toHostPort
object
-
toHostPortList
List<com.soffid.iam.api.HostPort> toHostPortList(Collection<HostPortEntity> entities)
Transforms toHostPort
list
-
hostPortToEntity
void hostPortToEntity(com.soffid.iam.api.HostPort source, HostPortEntity target, boolean copyIfNull)
Copy data fromHostPort
object
-
hostPortToEntity
HostPortEntity hostPortToEntity(com.soffid.iam.api.HostPort instance)
Transforms fromHostPort
object
-
hostPortToEntityList
List<HostPortEntity> hostPortToEntityList(Collection<com.soffid.iam.api.HostPort> instances)
Transforms fromHostPort
list
-
newHostPortEntity
HostPortEntity newHostPortEntity()
Creates an instance ofHostPortEntity
.
-
create
void create(HostPortEntity entity)
Adds an instance ofHostPortEntity
to the persistent store.
-
update
void update(HostPortEntity entity)
Updates an instance ofHostPortEntity
at the persistent store.
-
remove
void remove(HostPortEntity entity)
Removes an instance ofHostPortEntity
from the persistent store.
-
load
HostPortEntity load(Long id)
Loads an instance ofHostPortEntity
from the persistent store.
-
loadAll
List<HostPortEntity> loadAll()
Loads all instances ofHostPortEntity
from the persistent store.
-
create
void create(Collection<? extends HostPortEntity> entities)
Creates a collection ofHostPortEntity
and adds it to the persistent store.
-
update
void update(Collection<? extends HostPortEntity> entities)
Updates a collection ofHostPortEntity
in the persistent store.
-
remove
void remove(Collection<? extends HostPortEntity> entities)
Removes a collection ofHostPortEntity
from the persistent store.
-
remove
void remove(Long id)
Removes an instance ofHostPortEntity
from the persistent store.
-
query
List<HostPortEntity> query(String query, Parameter[] parameters)
Query ofHostPortEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<HostPortEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofHostPortEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-