| Package | com.esri.baserver.tasks.repository | 
| Interface | public interface IRepositoryItem | 
| Implementors | RepositoryItemParameters | 
This interface specifies properties of an item in the repository that the task deals with.
	 This can be a workspace, project, folder, or folder item depending on the task executed.
	 For example, in parameters of the Get Workspaces
	 task, all properties of this interface are null; in parameters of a task working with a whole workspace
	 (e.g. CreateWorkspace), the workspaceName property is specified;
	 in parameters of a task working with a project, the workspaceName and
	 projectName properties are specified; and so on.
| Property | Defined By | ||
|---|---|---|---|
| folderType : FolderType [read-only] 
		 Folder type. | IRepositoryItem | ||
| itemName : String [read-only] 
		 Item name. | IRepositoryItem | ||
| projectName : String [read-only] 
		 Project name. | IRepositoryItem | ||
| workspaceName : String [read-only] 
		 Workspace name. | IRepositoryItem | ||
| folderType | property | 
folderType:FolderType  [read-only] Folder type.
    public function get folderType():FolderType| itemName | property | 
itemName:String  [read-only] Item name.
    public function get itemName():String| projectName | property | 
projectName:String  [read-only] Project name.
    public function get projectName():String| workspaceName | property | 
workspaceName:String  [read-only] Workspace name.
    public function get workspaceName():String