|
IBM WebSphere Multichannel Bank Transformation Toolkit Javadoc | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IChannelListDAO
Interface for ChannelListDAO.
Method Summary | |
---|---|
void |
delete(ChannelList entity)
Delete a persistent ChannelList entity. |
java.util.List<ChannelList> |
findAll(int... rowStartIdxAndCount)
Find all ChannelList entities. |
java.util.List<ChannelList> |
findByChannelName(java.lang.Object channelName,
int... rowStartIdxAndCount)
find ChannelList entities with channelName |
java.util.List<ChannelList> |
findByDescription(java.lang.Object description,
int... rowStartIdxAndCount)
find ChannelList entities with description |
ChannelList |
findById(java.lang.String id)
|
java.util.List<ChannelList> |
findByProperty(java.lang.String propertyName,
java.lang.Object value,
int... rowStartIdxAndCount)
Find all ChannelList entities with a specific property value. |
void |
save(ChannelList entity)
Perform an initial save of a previously unsaved ChannelList entity. |
ChannelList |
update(ChannelList entity)
Persist a previously saved ChannelList entity and return it or a copy of it to the sender. |
Method Detail |
---|
void save(ChannelList entity)
EntityManager#persist
operation.
EntityManagerHelper.beginTransaction(); IChannelListDAO.save(entity); EntityManagerHelper.commit();
entity
- ChannelList entity to persist
java.lang.RuntimeException
- when the operation failsvoid delete(ChannelList entity)
EntityManager#delete
operation.
EntityManagerHelper.beginTransaction(); IChannelListDAO.delete(entity); EntityManagerHelper.commit(); entity = null;
entity
- ChannelList entity to delete
java.lang.RuntimeException
- when the operation failsChannelList update(ChannelList entity)
EntityManager#merge
operation.
EntityManagerHelper.beginTransaction(); entity = IChannelListDAO.update(entity); EntityManagerHelper.commit();
entity
- ChannelList entity to update
java.lang.RuntimeException
- if the operation failsChannelList findById(java.lang.String id)
String
- id
java.util.List<ChannelList> findByProperty(java.lang.String propertyName, java.lang.Object value, int... rowStartIdxAndCount)
propertyName
- the name of the ChannelList property to queryvalue
- the property value to matchrowStartIdxAndCount
- Optional int varargs. rowStartIdxAndCount[0] specifies the the
row index in the query result-set to begin collecting the
results. rowStartIdxAndCount[1] specifies the the maximum
count of results to return.
java.util.List<ChannelList> findByChannelName(java.lang.Object channelName, int... rowStartIdxAndCount)
Object
- channelNameint...
- rowStartIdxAndCount
java.util.List<ChannelList> findByDescription(java.lang.Object description, int... rowStartIdxAndCount)
Object
- descriptionint...
- rowStartIdxAndCount
java.util.List<ChannelList> findAll(int... rowStartIdxAndCount)
int...
- rowStartIdxAndCount
|
IBM WebSphere Multichannel Bank Transformation Toolkit Javadoc | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |