*** This class provides Binary Compatibility only, not Source Compatibility ***

Class DAVItem

java.lang.Object
com.sas.services.information.metadata.dav.DAVEntity
com.sas.services.information.metadata.dav.DAVItem
All Implemented Interfaces:
AttributesInterface, DAVEntityInterface, DAVItemInterface, Serializable
Direct Known Subclasses:
DAVApplitem, DAVBinarypackage, DAVEvent

@SASScope("ALL") @BinaryCompatibilityOnly public class DAVItem extends DAVEntity implements DAVItemInterface
DAVItem represents a non-collection resource in a DAV Store. DAVEntity provides the common functionality and DAVItem only the resource specific characteristics (eg. content manipulation).

Since:
1.0
See Also:
  • Constructor Details

    • DAVItem

      public DAVItem(RepositoryInterface repos, String reposId)
      Creates a new DAVItem for the entity with a repository id reposId in the repository repos
    • DAVItem

      public DAVItem(String url, Map properties)
      Creates a new DAVItem from the url and a property map
    • DAVItem

      public DAVItem(RepositoryData entity)
      Creates a new DAVFolder from the information in the entity
  • Method Details

    • setContentType

      public void setContentType(String contentType)
      Sets the content type for the item.
      Specified by:
      setContentType in interface DAVItemInterface
      Parameters:
      contentType - A string that represents the media type for the item
    • getContentType

      public String getContentType()
      Get the content type for the item.
      Specified by:
      getContentType in interface DAVItemInterface
      Returns:
      String The media type for the item's content
    • getContents

      public InputStream getContents() throws RemoteException
      Get the contents of the item.
      Specified by:
      getContents in interface DAVItemInterface
      Returns:
      InputStream An input stream that represents the item's contents
      Throws:
      RemoteException - in the case of network failure
    • setContents

      public void setContents(byte[] contents)
      Set the contents of the item.
      Specified by:
      setContents in interface DAVItemInterface
      Parameters:
      contents - A byte array that represents the item's content
    • setContents

      public void setContents(InputStream contents)
      Set the contents of the item from an input stream. For remote deployment the InputStream should be wrapped in an InputStreamAdapter
      Specified by:
      setContents in interface DAVItemInterface
      Parameters:
      contents - An input stream containing the contents
    • setContentsfromStore

      public void setContentsfromStore(DAVResourceInterface r)
      Set the contents of the item from store
      Specified by:
      setContentsfromStore in interface DAVItemInterface
      Parameters:
      r - A byte array that represents the item's content
    • getContentLength

      public int getContentLength()
      Get the length of the content
      Specified by:
      getContentLength in interface DAVItemInterface
      Returns:
      int The length of the content
    • getContentsAsBytes

      public byte[] getContentsAsBytes()
      Get the contents of the item as a byte array
      Specified by:
      getContentsAsBytes in interface DAVItemInterface
      Returns:
      byte[] A byte array with the contents of the item
    • toString

      public String toString()
      Overrides:
      toString in class DAVEntity
    • clearLocalLists

      public void clearLocalLists()
      Clear local lists as for DAVEntity and then reset the contentsStatus for this resource to reflect the fact that the content is the same as in the DAV store
      Overrides:
      clearLocalLists in class DAVEntity
    • hasContentsUpdates

      public boolean hasContentsUpdates()
      Does this item have any new content that should be updated/persisted ?
      Specified by:
      hasContentsUpdates in interface DAVItemInterface
      Returns:
      boolean Whether content has changed since the last update
    • finalize

      protected void finalize() throws Throwable
      Overrides:
      finalize in class Object
      Throws:
      Throwable
    • setContentsStatus

      public void setContentsStatus(int contentsStatus)
      Description copied from interface: DAVItemInterface
      Set the content status field.
      Specified by:
      setContentsStatus in interface DAVItemInterface
      Parameters:
      contentsStatus - The content status to be set
    • getContentsStatus

      public int getContentsStatus()
      Returns the status of the contents in the item
      Specified by:
      getContentsStatus in interface DAVItemInterface
      Returns:
      int The status of the content
    • isUpdatePending

      public boolean isUpdatePending()
      Are there any updates pending for this entity. Any attribute sets or removes create a pending update.

      Specified by:
      isUpdatePending in interface DAVEntityInterface
      Overrides:
      isUpdatePending in class DAVEntity
      Returns:
      boolean true is there are updates pending, false otherwise
    • checkout

      public void checkout() throws RemoteException
      Check out the item
      Specified by:
      checkout in interface DAVItemInterface
      Throws:
      RemoteException
    • checkin

      public void checkin() throws RemoteException
      Check in the item
      Specified by:
      checkin in interface DAVItemInterface
      Throws:
      RemoteException
    • uncheckout

      public void uncheckout() throws RemoteException
      Uncheckout the item
      Specified by:
      uncheckout in interface DAVItemInterface
      Throws:
      RemoteException