Class PortalPageDao


  • public class PortalPageDao
    extends AbstractDao
    Provides a DAO for the PortalPage entity.
    See Also:
    PortalPage
    • Constructor Detail

      • PortalPageDao

        public PortalPageDao()
    • 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 portal
        name - 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 searched
        portalPageIds - 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