Packagecom.esri.baserver.tasks.repository
Interfacepublic interface IRepositoryItem
Implementors RepositoryItemParameters

The IRepositoryItem interface is implemented with parameters of every repository task.

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.



Public Properties
 PropertyDefined 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
Property Detail
folderTypeproperty
folderType:FolderType  [read-only]

Folder type.


Implementation
    public function get folderType():FolderType
itemNameproperty 
itemName:String  [read-only]

Item name.


Implementation
    public function get itemName():String
projectNameproperty 
projectName:String  [read-only]

Project name.


Implementation
    public function get projectName():String
workspaceNameproperty 
workspaceName:String  [read-only]

Workspace name.


Implementation
    public function get workspaceName():String