Class ProjectManagementRelation
- java.lang.Object
-
- com.xwiki.projectmanagement.relations.model.ProjectManagementRelation
-
public class ProjectManagementRelation extends Object
The model representing the project management relation object. A relation between a page and project management entity.- Version:
- $Id$
-
-
Constructor Summary
Constructors Constructor Description ProjectManagementRelation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetClient()StringgetClientParams()StringgetProject()StringgetWorkItem()voidsetClient(String client)voidsetClientParams(String clientParams)voidsetProject(String project)voidsetWorkItem(String workItem)
-
-
-
Method Detail
-
getClient
public String getClient()
- Returns:
- the id of the project management client. i.e. openproject.
-
setClient
public void setClient(String client)
- Parameters:
client- seegetClient().
-
getProject
public String getProject()
- Returns:
- the id of the OpenProject project that is linked to a xwiki page.
-
setProject
public void setProject(String project)
- Parameters:
project- seegetProject().
-
getWorkItem
public String getWorkItem()
- Returns:
- the id of the OpenProject work package that is linked to a xwiki page.
-
setWorkItem
public void setWorkItem(String workItem)
- Parameters:
workItem- seegetWorkItem()()}.
-
getClientParams
public String getClientParams()
- Returns:
- the stored client params in a string format. The storage format is defined by the client.
-
setClientParams
public void setClientParams(String clientParams)
- Parameters:
clientParams- seegetClientParams().
-
-