Package com.avoka.fc.core.dao
Class PortalPageDao
- java.lang.Object
-
- com.avoka.core.dao.BaseDao
-
- com.avoka.fc.core.dao.AbstractDao
-
- com.avoka.fc.core.dao.PortalPageDao
-
public class PortalPageDao extends AbstractDao
Provides a DAO for the PortalPage entity.- See Also:
PortalPage
-
-
Field Summary
-
Fields inherited from class com.avoka.core.dao.BaseDao
FETCH_LIMIT, STATEMENT_MAX_NO_PARAMETERS
-
-
Constructor Summary
Constructors Constructor Description PortalPageDao()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PortalPage
getObjectForPK(Object id)
Return the portal page with the specified OIDPortalPage
getPortalPageByName(Object portalId, String name)
Return the portal page with the specified name for the given portalList<PortalPage>
getPortalPageList(Object portalId)
Return the list of portal pages for the given portal, ordered by nameList<PortalPage>
getPortalPageList(Object portalId, Object[] portalPageIds)
Return the list of portal pages with the specified OIDs, ordered by name-
Methods inherited from class com.avoka.fc.core.dao.AbstractDao
andFilterClientExcludeNull, andFilterClientIncludeNull, andFilterClientOnly, isClientAccessAllowed, performQueryConfigCached
-
Methods inherited from class com.avoka.core.dao.BaseDao
addOrdering, addOrderingCaseInsensitive, addOrderingCaseSensitive, andQueryBetween, andQueryInExp, andQueryInExp, andQueryLikeIgnoreCaseExp, andQueryMatchDbExp, andQueryMatchExp, andQueryMatchIsNotNull, andQueryMatchIsNull, andQueryNoMatchExp, andQueryNotTrue, deleteObject, deleteObjects, findObject, getDataContext, getFetchLimit, getLogger, getObjectForPK, newObject, orQueryLikeIgnoreCaseExp, orQueryMatchExp, performNamedQuery, performNamedQuery, performNamedQuery, performNamedQuery, performNonSelectingQuery, performNonSelectingQuery, performNonSelectingQuery, performNonSelectingQuery, performQuery, performQuery, performQuery, registerNewObject, setCacheStrategy, setFetchLimit, setLocalCacheStrategy, setLocalCacheStrategy, setSharedCacheStrategy, toMap, toMap
-
-
-
-
Method Detail
-
getObjectForPK
public PortalPage getObjectForPK(Object id)
Return the portal page with the specified OID- Parameters:
id
- the OID- Returns:
- the matching portal page, or null if not found
-
getPortalPageByName
public PortalPage getPortalPageByName(Object portalId, String name)
Return the portal page with the specified name for the given portal- Parameters:
portalId
- the non-null OID of the portalname
- the non-null portal page name- Returns:
- the matching portal page
-
getPortalPageList
public List<PortalPage> getPortalPageList(Object portalId, Object[] portalPageIds)
Return the list of portal pages with the specified OIDs, ordered by name- Parameters:
portalId
- the non-null OID of the portal that will be searchedportalPageIds
- the non-null list of portal page OIDs- Returns:
- the list of portal pages
-
getPortalPageList
public List<PortalPage> getPortalPageList(Object portalId)
Return the list of portal pages for the given portal, ordered by name- Parameters:
portalId
- the non-null OID of the portal- Returns:
- the list of portal pages
-
-