Class UnknownFolderItem

  • All Implemented Interfaces:
    FolderItem

    public class UnknownFolderItem
    extends LocalFolderItem
    UnknownFolderItem acts as a LocalFolderItem place-holder for items of an unknown type.
    • Field Detail

      • UNKNOWN_CONTENT_TYPE

        public static final java.lang.String UNKNOWN_CONTENT_TYPE
        See Also:
        Constant Field Values
    • Method Detail

      • length

        public long length()
                    throws java.io.IOException
        Description copied from interface: FolderItem
        Returns the length of this domain file. This size is the minimum disk space used for storing this file, but does not account for additional storage space used to tracks changes, etc.
        Returns:
        file length
        Throws:
        java.io.IOException - thrown if IO or access error occurs
      • updateCheckout

        public void updateCheckout​(FolderItem versionedFolderItem,
                                   boolean updateItem,
                                   TaskMonitor monitor)
                            throws java.io.IOException
        Description copied from class: LocalFolderItem
        Update this non-versioned item with the latest version of the specified versioned item.
        Specified by:
        updateCheckout in class LocalFolderItem
        Parameters:
        versionedFolderItem - versioned item which corresponds to this non-versioned item.
        updateItem - if true this items content is updated using the versionedFolderItem
        monitor - progress monitor for update
        Throws:
        java.io.IOException - if this file is not a checked-out non-versioned file or an IO error occurs.
      • updateCheckout

        public void updateCheckout​(FolderItem item,
                                   int checkoutVersion)
                            throws java.io.IOException
        Description copied from class: LocalFolderItem
        Update this non-versioned item with the contents of the specified item which must be within the same non-versioned fileSystem. If successful, the specified item will be removed after its content has been moved into this item.
        Specified by:
        updateCheckout in class LocalFolderItem
        Throws:
        java.io.IOException - if this file is not a checked-out non-versioned file or an IO error occurs.
      • checkout

        public ItemCheckoutStatus checkout​(java.lang.String user)
                                    throws java.io.IOException
        Throws:
        java.io.IOException
      • terminateCheckout

        public void terminateCheckout​(long checkoutId)
      • clearCheckout

        public void clearCheckout()
                           throws java.io.IOException
        Description copied from interface: FolderItem
        Clears the checkout data associated with this non-shared file. NOTE: This method is only valid for a local non-versioned file-system.
        Specified by:
        clearCheckout in interface FolderItem
        Overrides:
        clearCheckout in class LocalFolderItem
        Throws:
        java.io.IOException
      • setCheckout

        public void setCheckout​(long checkoutId,
                                int checkoutVersion,
                                int localVersion)
      • getCheckout

        public ItemCheckoutStatus getCheckout​(long checkoutId)
                                       throws java.io.IOException
        Description copied from interface: FolderItem
        Get the checkout status which corresponds to the specified checkout ID.
        Specified by:
        getCheckout in interface FolderItem
        Overrides:
        getCheckout in class LocalFolderItem
        Parameters:
        checkoutId - checkout ID
        Returns:
        checkout status or null if checkout ID not found.
        Throws:
        java.io.IOException - if an IO error occurs or this item is not versioned
      • getCheckouts

        public ItemCheckoutStatus[] getCheckouts()
                                          throws java.io.IOException
        Description copied from interface: FolderItem
        Get all current checkouts for this item.
        Specified by:
        getCheckouts in interface FolderItem
        Overrides:
        getCheckouts in class LocalFolderItem
        Returns:
        list of checkouts
        Throws:
        java.io.IOException - if an IO error occurs or this item is not versioned
      • output

        public void output​(java.io.File outputFile,
                           int version,
                           TaskMonitor monitor)
                    throws java.io.IOException
        Description copied from interface: FolderItem
        Serialize (i.e., pack) this item into the specified outputFile.
        Parameters:
        outputFile - packed output file to be created
        version - if this item is versioned, specifies the version to be output, otherwise -1 should be specified.
        monitor - progress monitor
        Throws:
        java.io.IOException
      • getCurrentVersion

        public int getCurrentVersion()
        Description copied from interface: FolderItem
        Return the latest/current version.
      • canRecover

        public boolean canRecover()
        Description copied from interface: FolderItem
        Returns true if unsaved file changes can be recovered.