Package com.esri.arcgisruntime.portal
Class PortalFolder
- java.lang.Object
-
- com.esri.arcgisruntime.portal.PortalFolder
-
public final class PortalFolder extends java.lang.Object
Represents a sub folder in the root folder of a user. Folders are used to organize content in a portal.- Since:
- 100.0.0
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Calendar
getCreated()
Gets the date this folder was created.java.lang.String
getFolderId()
Gets the ID of this folder.java.lang.String
getTitle()
Gets the title of this folder.java.lang.String
getUsername()
Gets the name of the owner of this folder.
-
-
-
Method Detail
-
getFolderId
public java.lang.String getFolderId()
Gets the ID of this folder.- Returns:
- the ID of this folder
- Since:
- 100.0.0
-
getTitle
public java.lang.String getTitle()
Gets the title of this folder.- Returns:
- the title of this folder
- Since:
- 100.0.0
-
getUsername
public java.lang.String getUsername()
Gets the name of the owner of this folder.- Returns:
- the name of the owner of this folder
- Since:
- 100.0.0
-
getCreated
public java.util.Calendar getCreated()
Gets the date this folder was created.- Returns:
- the date this folder was created; always a GregorianCalendar using UTC time zone and English locale
- Since:
- 100.0.0
-
-