Class PathItem


  • public class PathItem
    extends Object
    PathItem contains basic information about a path item that is returned by the service after certain operations.
    • Constructor Detail

      • PathItem

        public PathItem​(String eTag,
                        OffsetDateTime lastModified,
                        long contentLength,
                        String group,
                        boolean isDirectory,
                        String name,
                        String owner,
                        String permissions)
        Constructs a PathItem
        Parameters:
        eTag - ETag of the path.
        lastModified - Datetime when the path was last modified.
        contentLength - The content length of the path.
        group - The group the path belongs to.
        isDirectory - Whether or not the path is a directory.
        name - The name of the path.
        owner - The owner the path belongs to.
        permissions - The permissions set on the path.
    • Method Detail

      • getETag

        public String getETag()
        Get the eTag property: The eTag property.
        Returns:
        the eTag value.
      • getLastModified

        public OffsetDateTime getLastModified()
        Get the lastModified property: The lastModified property.
        Returns:
        the lastModified value.
      • getContentLength

        public long getContentLength()
        Get the contentLength property: The contentLength property.
        Returns:
        the contentLength value.
      • getGroup

        public String getGroup()
        Get the group property: The group property.
        Returns:
        the group value.
      • isDirectory

        public boolean isDirectory()
        Get the isDirectory property: The isDirectory property.
        Returns:
        the isDirectory value.
      • getName

        public String getName()
        Get the name property: The name property.
        Returns:
        the name value.
      • getOwner

        public String getOwner()
        Get the owner property: The owner property.
        Returns:
        the owner value.
      • getPermissions

        public String getPermissions()
        Get the permissions property: The permissions property.
        Returns:
        the permissions value.