com.vasoftware.sf.soap44.webservices.sfmain
Class FolderSoapDO

java.lang.Object
  extended by com.vasoftware.sf.soap44.webservices.sfmain.ObjectSoapDO
      extended by com.vasoftware.sf.soap44.webservices.sfmain.FolderSoapDO
Direct Known Subclasses:
CategorySoapDO, DocumentFolderSoapDO, ForumSoapDO, GenericFolderSoapDO, PackageSoapDO, ReleaseSoapDO, RepositorySoapDO, TaskGroupSoapDO, TopicSoapDO, TrackerSoapDO

public abstract class FolderSoapDO
extends ObjectSoapDO

Basic data inherited by all container objects extending this data type.

Since:
4.1
Version:
$Revision: 1.2 $ $Date: 2007/05/24 00:53:59 $
Author:
Chary Aasuri

Constructor Summary
FolderSoapDO()
           
 
Method Summary
 java.lang.String getDescription()
          Returns the folder description.
 java.lang.String getParentFolderId()
          Returns the parent container (folder) id, if one exists.
 java.lang.String getPath()
          Returns the folder path.
 java.lang.String getProjectId()
          Returns the project to which this folder belongs.
 java.lang.String getTitle()
          Returns the folder title.
static void registerTypeMappings(org.apache.axis.client.Call call)
          Registers SOAP type mappings.
 void setDescription(java.lang.String description)
          Sets the folder description.
 void setParentFolderId(java.lang.String parentFolderId)
          Sets the parent container (folder) id, if one exists.
 void setPath(java.lang.String path)
          Sets the folder path.
 void setProjectId(java.lang.String projectId)
          Sets the project to which this folder belongs.
 void setTitle(java.lang.String title)
          Sets the folder title.
 
Methods inherited from class com.vasoftware.sf.soap44.webservices.sfmain.ObjectSoapDO
getCreatedBy, getCreatedDate, getId, getLastModifiedBy, getLastModifiedDate, getVersion, setCreatedBy, setCreatedDate, setId, setLastModifiedBy, setLastModifiedDate, setVersion
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

FolderSoapDO

public FolderSoapDO()
Method Detail

getProjectId

public java.lang.String getProjectId()
Returns the project to which this folder belongs.

Returns:
Project ID.

setProjectId

public void setProjectId(java.lang.String projectId)
Sets the project to which this folder belongs.

Parameters:
projectId - Project ID.

getParentFolderId

public java.lang.String getParentFolderId()
Returns the parent container (folder) id, if one exists. For a document folder/task folder, this refers to the parent folder. For a release (ReleaseSoapDO) it refers to a package. For a topic (TopicSoapDO) it refers to a forum, etc.

Returns:
Parent container (folder) ID or null if none exists.

setParentFolderId

public void setParentFolderId(java.lang.String parentFolderId)
Sets the parent container (folder) id, if one exists. For a document folder/task folder, this refers to the parent folder. For a release (ReleaseSoapDO) it refers to a package. For a topic (TopicSoapDO) it refers to a forum, etc.

Parameters:
parentFolderId - Parent container (folder) ID or null if none exists.

getPath

public java.lang.String getPath()
Returns the folder path.

Returns:
the folder path.

setPath

public void setPath(java.lang.String path)
Sets the folder path.

Parameters:
path - Folder path.

getTitle

public java.lang.String getTitle()
Returns the folder title.

Returns:
the folder title.

setTitle

public void setTitle(java.lang.String title)
Sets the folder title.

Parameters:
title - folder title.

getDescription

public java.lang.String getDescription()
Returns the folder description.

Returns:
the folder description.

setDescription

public void setDescription(java.lang.String description)
Sets the folder description.

Parameters:
description - folder description.

registerTypeMappings

public static void registerTypeMappings(org.apache.axis.client.Call call)
Registers SOAP type mappings.

Parameters:
call - Soap call.