Interface IFolder

All Superinterfaces:
IDeletionSupport, IElement, IExternalSupport, ILibraryElement, IProtocolSupport, ISearchSupport, ISecuritySupport, ITrashSupport, IUriSupport, Serializable
All Known Implementing Classes:
PortalFolder

The folder within the library system.
Since:
1.0, 15/04/2008
Author:
vlygeros
See Also:
  • Method Details Link icon

    • setName Link icon

      void setName(String name)
      Sets the name of the folder.
      Parameters:
      name - the new name to set.
    • getName Link icon

      String getName()
      Gets the name of the folder.
      Specified by:
      getName in interface ILibraryElement
      Returns:
      a String object.
    • setDescription Link icon

      void setDescription(String description)
      Sets the description of the folder.
      Parameters:
      description - the new description to set.
    • getDescription Link icon

      String getDescription()
      Gets the description of the folder.
      Specified by:
      getDescription in interface ILibraryElement
      Returns:
      a String of the folder.
    • getCreatedDate Link icon

      Date getCreatedDate()
      Gets the created date.
      Returns:
      a Date object.
    • setModifiedDate Link icon

      void setModifiedDate(Date date)
      Sets the modified date.
      Parameters:
      date - The Date to set.
    • getModifiedDate Link icon

      Date getModifiedDate()
      Gets the modified date.
      Returns:
      a Date object.
    • setCreatedBy Link icon

      void setCreatedBy(IUser user)
      Sets the creator of the folder.
      Parameters:
      user - The user to set as the creator of the folder.
    • getCreatedBy Link icon

      IUser getCreatedBy()
      Gets the creator of the folder.
      Returns:
      a IUser object.
    • setModifiedBy Link icon

      void setModifiedBy(IUser user)
      Sets last user who modified the folder.
      Parameters:
      user - The last IUser who modified the folder.
    • getModifiedBy Link icon

      IUser getModifiedBy()
      Gets the last user who modified the folder.
      Returns:
      a IUser object.
    • addFile Link icon

      void addFile(IFile file)
      Adds a IFile object.
      Parameters:
      file - The IFile object to add.
    • getFolders Link icon

      Collection getFolders(IContext context)
      Gets the child folders
      Parameters:
      context - The execution context.
      Returns:
      A collection of IFolder objects.
    • getFolder Link icon

      IFolder getFolder(IContext context, String name)
      Gets a child IFolder object by its name.
      Parameters:
      context - The execution context.
      name - The name of the child folder.
      Returns:
      A IFolder object.
    • getParentFolder Link icon

      IFolder getParentFolder()
      Gets the parent folder.
      Returns:
      A IFolder object.
    • getLibrary Link icon

      ILibrary getLibrary()
      Gets the library.
      Returns:
      A ILibrary object.