Class PortalLibrary

All Implemented Interfaces:
IElement, ILibrary, IDeletionSupport, IExternalSupport, IProtocolSupport, ISearchSupport, ISecuritySupport, Serializable

public class PortalLibrary extends PortalElement implements ILibrary
Portal library (classic ILibrary implementation for Process)
Author:
vlygeros
See Also:
  • Field Details Link icon

    • store Link icon

      protected com.axemble.webdrive.om.DataStore store
  • Constructor Details Link icon

    • PortalLibrary Link icon

      protected PortalLibrary(IModule module, com.axemble.webdrive.jdo.beans.JDODataStore store)
    • PortalLibrary Link icon

      protected PortalLibrary(IModule module, com.axemble.webdrive.om.DataStore store)
  • Method Details Link icon

    • getNativeObject Link icon

      public Object getNativeObject()
      Description copied from interface: IElement
      Gets the native object underneath.
      Specified by:
      getNativeObject in interface IElement
      Returns:
      an object.
    • getExternalClassName Link icon

      public String getExternalClassName()
      Specified by:
      getExternalClassName in interface IExternalSupport
    • getExternalNativeId Link icon

      public String getExternalNativeId()
      Specified by:
      getExternalNativeId in interface IExternalSupport
    • getName Link icon

      public String getName()
      Description copied from interface: ILibrary
      Gets the name of the library.
      Specified by:
      getName in interface ILibrary
      Returns:
      The name of the library.
    • setName Link icon

      public void setName(String name)
      Description copied from interface: ILibrary
      Sets the name of the library.
      Specified by:
      setName in interface ILibrary
      Parameters:
      name - The new name to set to the library.
    • getAllFolders Link icon

      public Collection<IFolder> getAllFolders(IContext iContext)
      Description copied from interface: ILibrary
      Gets off the folders.
      Specified by:
      getAllFolders in interface ILibrary
      Parameters:
      iContext - The user context.
      Returns:
      A java.util.Collection of IFolder objects.
    • getFolders Link icon

      public Collection<IFolder> getFolders(IContext iContext)
      Description copied from interface: ILibrary
      Gets all the folders at the root level.
      Specified by:
      getFolders in interface ILibrary
      Parameters:
      iContext - The user context.
      Returns:
      A java.util.Collection of IFolder objects.
    • getAllCategories Link icon

      public Collection<ICategory> getAllCategories()
      Description copied from interface: ILibrary
      Gets all the categories.
      Specified by:
      getAllCategories in interface ILibrary
      Returns:
      A java.util.Collection of ICategory objects.
    • getCategories Link icon

      public Collection<ICategory> getCategories()
      Description copied from interface: ILibrary
      Gets all the root categories.
      Specified by:
      getCategories in interface ILibrary
      Returns:
      A java.util.Collection of ICategory objects.
    • getFileDefinitions Link icon

      public Collection getFileDefinitions()
      Description copied from interface: ILibrary
      Gets the file definitions.
      Specified by:
      getFileDefinitions in interface ILibrary
      Returns:
      A java.util.Collection of IResourceDefinition objects.
    • getPhysicalPath Link icon

      public String getPhysicalPath()
      Description copied from interface: ILibrary
      Retrieves the physical path of the library.
      Specified by:
      getPhysicalPath in interface ILibrary
      Returns:
      The physical path.
    • delete Link icon

      public void delete(IContext context)
      Description copied from interface: IDeletionSupport
      Deletes the IElement object.
      Specified by:
      delete in interface IDeletionSupport
      Parameters:
      context - The Execution context.
    • getOrganization Link icon

      public IOrganization getOrganization()
      Description copied from interface: ILibrary
      Gets the organization.
      Specified by:
      getOrganization in interface ILibrary
      Returns:
      A IOrganization object.
    • setOrganization Link icon

      public void setOrganization(IOrganization organization)
      Description copied from interface: ILibrary
      Sets the organization.
      Specified by:
      setOrganization in interface ILibrary
      Parameters:
      organization - The IOrganization object.
    • getForbiddenExtensions Link icon

      public String getForbiddenExtensions()
      Description copied from interface: ILibrary
      Gets the list of forbidden extensions.
      Specified by:
      getForbiddenExtensions in interface ILibrary
      Returns:
      The list of forbidden extensions.
    • setForbiddenExtensions Link icon

      public void setForbiddenExtensions(String forbiddenExtensions)
      Description copied from interface: ILibrary
      Sets the list of forbidden extensions.
      Specified by:
      setForbiddenExtensions in interface ILibrary
      Parameters:
      forbiddenExtensions - The forbidden extensions.
    • getAlertEventListeners Link icon

      public String getAlertEventListeners()
      Description copied from interface: ILibrary
      Gets the email addresses to notify when the alert size is reached.
      Specified by:
      getAlertEventListeners in interface ILibrary
      Returns:
      The email addresses.
    • getAlertSize Link icon

      public int getAlertSize()
      Description copied from interface: ILibrary
      Gets the alert size in bytes.
      Specified by:
      getAlertSize in interface ILibrary
      Returns:
      The size in bytes.
    • getMaxFileSize Link icon

      public long getMaxFileSize()
      Description copied from interface: ILibrary
      Gets the maximum size of a file.
      Specified by:
      getMaxFileSize in interface ILibrary
      Returns:
      The maximum size of a file in bytes.
    • getMaxSize Link icon

      public long getMaxSize()
      Description copied from interface: ILibrary
      Gets the maximum size available for a library.
      Specified by:
      getMaxSize in interface ILibrary
      Returns:
      The maximum size in bytes.
    • getMaxSizeEventListeners Link icon

      public String getMaxSizeEventListeners()
      Description copied from interface: ILibrary
      Gets the email addresses to notify if the maximum size is reached.
      Specified by:
      getMaxSizeEventListeners in interface ILibrary
      Returns:
      The email addresses.
    • setAlertEventListeners Link icon

      public void setAlertEventListeners(String emails)
      Description copied from interface: ILibrary
      Sets the email addresses to notify when the alert size is reached.
      Specified by:
      setAlertEventListeners in interface ILibrary
      Parameters:
      emails - The email addresses.
    • setAlertSize Link icon

      public void setAlertSize(int alertSize)
      Description copied from interface: ILibrary
      Sets the alert size.
      Specified by:
      setAlertSize in interface ILibrary
      Parameters:
      alertSize - The size in bytes.
    • setMaxFileSize Link icon

      public void setMaxFileSize(long maxFileSize)
      Description copied from interface: ILibrary
      Sets the maximum size for a file.
      Specified by:
      setMaxFileSize in interface ILibrary
      Parameters:
      maxFileSize - The file size in bytes.
    • setMaxSize Link icon

      public void setMaxSize(long maxSize)
      Description copied from interface: ILibrary
      Sets the maximum size available.
      Specified by:
      setMaxSize in interface ILibrary
      Parameters:
      maxSize - The maximum size.
    • setMaxSizeEventListeners Link icon

      public void setMaxSizeEventListeners(String emails)
      Description copied from interface: ILibrary
      Sets the email addresses to notify when the maximum size is reached.
      Specified by:
      setMaxSizeEventListeners in interface ILibrary
      Parameters:
      emails - The email addresses.
    • setPhysicalPath Link icon

      public void setPhysicalPath(String path)
      Description copied from interface: ILibrary
      Sets the physical path of the library
      Specified by:
      setPhysicalPath in interface ILibrary
      Parameters:
      path - The physical path.
    • getCurrentSize Link icon

      public long getCurrentSize()
      Description copied from interface: ILibrary
      Gets the current size.
      Specified by:
      getCurrentSize in interface ILibrary
      Returns:
      The size in bytes.
    • getLargestFileSize Link icon

      public long getLargestFileSize()
      Description copied from interface: ILibrary
      Gets the largest file size.
      Specified by:
      getLargestFileSize in interface ILibrary
      Returns:
      The size in bytes.
    • getNumberOfElements Link icon

      public long getNumberOfElements()
      Description copied from interface: ILibrary
      The number of elements.
      Specified by:
      getNumberOfElements in interface ILibrary
      Returns:
      The number of elements.
    • getNumberOfElements Link icon

      public long getNumberOfElements(Class natureClass)
      Description copied from interface: ILibrary
      The number of elements of a specific class.
      Specified by:
      getNumberOfElements in interface ILibrary
      Parameters:
      natureClass - The nature.
      Returns:
      The number of elements.
    • getSmallestFileSize Link icon

      public long getSmallestFileSize()
      Description copied from interface: ILibrary
      Gets the smallest file size.
      Specified by:
      getSmallestFileSize in interface ILibrary
      Returns:
      The size in bytes.
    • allowHistoryEvents Link icon

      public void allowHistoryEvents()
      Description copied from interface: ILibrary
      Allows to log history events.
      Specified by:
      allowHistoryEvents in interface ILibrary
    • denyHistoryEvents Link icon

      public void denyHistoryEvents()
      Description copied from interface: ILibrary
      Allows to stop logging history events.
      Specified by:
      denyHistoryEvents in interface ILibrary
    • setHistoryEvents Link icon

      public void setHistoryEvents(boolean enabled)
    • isHistoryEnabled Link icon

      public boolean isHistoryEnabled()
      Description copied from interface: ILibrary
      History activation status
      Specified by:
      isHistoryEnabled in interface ILibrary
      Returns:
      The status of history.
    • isIndexationEnable Link icon

      public boolean isIndexationEnable()
      Description copied from interface: ILibrary
      Check if the datastore must be indexed
      Specified by:
      isIndexationEnable in interface ILibrary
      Returns:
      true if the datastore must be indexed, false if not
    • setIndexationEnable Link icon

      public void setIndexationEnable(boolean indexationEnable)
      Description copied from interface: ILibrary
      Sets the indexation state of the datastore
      Specified by:
      setIndexationEnable in interface ILibrary
      Parameters:
      indexationEnable - true if the datastore must be indexed, false if not
    • getAuthorizedExtensions Link icon

      public String getAuthorizedExtensions()
      Description copied from interface: ILibrary
      Gets the list of authorized extensions.
      Specified by:
      getAuthorizedExtensions in interface ILibrary
      Returns:
      The list of authorized extensions.
    • setAuthorizedExtensions Link icon

      public void setAuthorizedExtensions(String authorizedExtensions)
      Description copied from interface: ILibrary
      Sets the list of authorized extensions.
      Specified by:
      setAuthorizedExtensions in interface ILibrary
      Parameters:
      authorizedExtensions - The authorized extensions.