|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface SolutionHome
Finder Name | Finder Description | Returns |
---|---|---|
findByPrimaryKey | one | |
findAll | Find all Solutions | many |
findByBestBet | Finds the Solution that are marked as best bet | many |
findByBestBetASC | Finds the Solutions (ascending order) that are marked as best bet | many |
findByLegacyId | Finds a solution with the given legacyId property | one |
findByOwningGroupOrgId | Finds the Solutions that has the given Owning Group. | many |
findByOwningGroupOrgValueId | Finds the Solutions that has the given Owning Group. | many |
findBySolutionClass | Finds all Solutions derived from the given SolutionClass | many |
findBySolutionField | Finds the Solution that has the given SolutionField. | one |
Method Summary | |
---|---|
atg.svc.repository.beans.Solution |
create()
Returns a new instance. |
atg.svc.repository.beans.Solution |
create(java.lang.String pId)
Returns a new instance with the repository id set to the given id. |
java.util.Collection |
findAll()
Find all Solutions |
java.util.Collection |
findByBestBet(int startingIndex,
int numItems)
Finds the Solution that are marked as best bet |
java.util.Collection |
findByBestBetASC(int startingIndex,
int numItems)
Finds the Solutions (ascending order) that are marked as best bet |
atg.svc.repository.beans.Solution |
findByLegacyId(java.lang.String legacyId)
Finds a solution with the given legacyId property |
java.util.Collection |
findByOwningGroupOrgId(java.lang.String organizationId)
Finds the Solutions that has the given Owning Group. |
java.util.Collection |
findByOwningGroupOrgValueId(java.lang.String organizationValueId)
Finds the Solutions that has the given Owning Group. |
atg.svc.repository.beans.Solution |
findByPrimaryKey(java.lang.String primaryKey)
Returns the instance with the given primary key, throws ObjectNotFoundException if the instance is not found. |
java.util.Collection |
findBySolutionClass(java.lang.String solutionClassId)
Finds all Solutions derived from the given SolutionClass |
atg.svc.repository.beans.Solution |
findBySolutionField(java.lang.String solutionFieldId)
Finds the Solution that has the given SolutionField. |
atg.svc.repository.beans.Solution |
findPublishedSolutionById(java.lang.String solutionId)
finds a published solution by its id |
atg.svc.repository.beans.Solution |
wrapRepositoryItem(atg.repository.RepositoryItem pRepositoryItem)
|
java.util.Collection |
wrapRepositoryItems(java.util.Collection pRepositoryItems)
|
Methods inherited from interface javax.ejb.EJBLocalHome |
---|
remove |
Method Detail |
---|
atg.svc.repository.beans.Solution create() throws javax.ejb.CreateException, javax.ejb.EJBException
SolutionHomes
factory was obtained. If the instance is backed by a persistent implementation, it may not actually be persisted until Solution.writeInstance()
is called on the instance (and the transaction is committed, if the implementation is transaction-aware).
javax.ejb.CreateException
javax.ejb.EJBException
atg.svc.repository.beans.Solution create(java.lang.String pId) throws javax.ejb.CreateException, javax.ejb.EJBException
SolutionHomes
factory was obtained. If the instance is backed by a persistent implementation, it may not actually be persisted until Solution.writeInstance()
is called on the instance (and the transaction is committed, if the implementation is transaction-aware).
javax.ejb.CreateException
javax.ejb.EJBException
atg.svc.repository.beans.Solution findByPrimaryKey(java.lang.String primaryKey) throws javax.ejb.FinderException, javax.ejb.EJBException
ObjectNotFoundException
if the instance is not found.
javax.ejb.FinderException
javax.ejb.EJBException
java.util.Collection findAll() throws javax.ejb.FinderException, javax.ejb.EJBException
Collection
of Solution
instances matching the criteria. The Collection.iterator()
method can be used to retrieve the instances in order. If no instances match the criteria, then an empty Collection is returned. A null value is never returned.
javax.ejb.FinderException
javax.ejb.EJBException
java.util.Collection findByBestBet(int startingIndex, int numItems) throws javax.ejb.FinderException, javax.ejb.EJBException
startingIndex
- Starting Index of items to be retreived.numItems
- Number of items to retrieve.
Collection
of Solution
instances matching the criteria. The Collection.iterator()
method can be used to retrieve the instances in order. If no instances match the criteria, then an empty Collection is returned. A null value is never returned.
javax.ejb.FinderException
javax.ejb.EJBException
java.util.Collection findByBestBetASC(int startingIndex, int numItems) throws javax.ejb.FinderException, javax.ejb.EJBException
startingIndex
- Starting Index of items to be retreived.numItems
- Number of items to retrieve.
Collection
of Solution
instances matching the criteria. The Collection.iterator()
method can be used to retrieve the instances in order. If no instances match the criteria, then an empty Collection is returned. A null value is never returned.
javax.ejb.FinderException
javax.ejb.EJBException
atg.svc.repository.beans.Solution findByLegacyId(java.lang.String legacyId) throws javax.ejb.FinderException, javax.ejb.EJBException
legacyId
- The legacyId string
ObjectNotFoundException
if no such instance is found.
javax.ejb.FinderException
javax.ejb.EJBException
java.util.Collection findByOwningGroupOrgId(java.lang.String organizationId) throws javax.ejb.FinderException, javax.ejb.EJBException
organizationId
- The organization id of the Owning Group
Collection
of Solution
instances matching the criteria. The Collection.iterator()
method can be used to retrieve the instances in order. If no instances match the criteria, then an empty Collection is returned. A null value is never returned.
javax.ejb.FinderException
javax.ejb.EJBException
java.util.Collection findByOwningGroupOrgValueId(java.lang.String organizationValueId) throws javax.ejb.FinderException, javax.ejb.EJBException
organizationValueId
- The organization value id of the Owning Group
Collection
of Solution
instances matching the criteria. The Collection.iterator()
method can be used to retrieve the instances in order. If no instances match the criteria, then an empty Collection is returned. A null value is never returned.
javax.ejb.FinderException
javax.ejb.EJBException
java.util.Collection findBySolutionClass(java.lang.String solutionClassId) throws javax.ejb.FinderException, javax.ejb.EJBException
solutionClassId
- The repository id of the SolutionClass
Collection
of Solution
instances matching the criteria. The Collection.iterator()
method can be used to retrieve the instances in order. If no instances match the criteria, then an empty Collection is returned. A null value is never returned.
javax.ejb.FinderException
javax.ejb.EJBException
atg.svc.repository.beans.Solution findBySolutionField(java.lang.String solutionFieldId) throws javax.ejb.FinderException, javax.ejb.EJBException
solutionFieldId
- The id of the SolutionField
ObjectNotFoundException
if no such instance is found.
javax.ejb.FinderException
javax.ejb.EJBException
java.util.Collection wrapRepositoryItems(java.util.Collection pRepositoryItems)
atg.svc.repository.beans.Solution wrapRepositoryItem(atg.repository.RepositoryItem pRepositoryItem)
atg.svc.repository.beans.Solution findPublishedSolutionById(java.lang.String solutionId) throws ObjectNotFoundException, javax.ejb.FinderException, javax.ejb.EJBException
solutionId
- The id of the published solution
ObjectNotFoundException
javax.ejb.FinderException
javax.ejb.EJBException
- A system-level error occurred
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |