Class Deliverable
- java.lang.Object
-
- org.eclipse.lyo.oslc4j.core.model.AbstractResource
-
- com.sodius.oslc.app.jazz.ccm.model.Deliverable
-
- All Implemented Interfaces:
IExtendedResource
,IResource
@OslcNamespace("http://jazz.net/xmlns/prod/jazz/rtc/cm/1.0/") @OslcResourceShape(title="Deliverable Resource Shape", describes="http://jazz.net/xmlns/prod/jazz/rtc/cm/1.0/Deliverable") public class Deliverable extends AbstractResource
Describes a deliverable.In order to be GC compatible, OSLC Change Management applications need to implement a mapping between their deliverables and some global configurations.
When a link is created from a change request to a configured resource:
- The right change request Deliverable attribute is identified. It can be deduced from the link type and the
DeliverableType
it's mapped to. - The right global configuration is identified with the Deliverable's oslc_config:configuration attribute.
- The link is created on the change request. The change request should return it as a
DeliverableLink
.
See this article for more information:
https://jazz.net/help-dev/clm/index.jsp?topic=%2Fcom.ibm.team.workitem.doc%2Ftopics%2Fc_linking_to_cm_artifacts.html- Since:
- 1.8.0
-
-
Constructor Summary
Constructors Constructor Description Deliverable()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description URI
getConfiguration()
URI
getInstanceShape()
String
getTitle()
void
setConfiguration(URI configuration)
void
setInstanceShape(URI instanceShape)
void
setTitle(String title)
-
Methods inherited from class org.eclipse.lyo.oslc4j.core.model.AbstractResource
addType, getAbout, getExtendedProperties, getTypes, setAbout, setExtendedProperties, setTypes
-
-
-
-
Method Detail
-
getConfiguration
@OslcPropertyDefinition("http://open-services.net/ns/config#configuration") public URI getConfiguration()
-
setConfiguration
public void setConfiguration(URI configuration)
-
getTitle
@OslcDescription("Title (reference: Dublin Core) or often a single line summary of the resource represented as rich text in XHTML content.") @OslcOccurs(ExactlyOne) @OslcPropertyDefinition("http://purl.org/dc/terms/title") @OslcTitle("Title") @OslcValueType(XMLLiteral) public String getTitle()
-
setTitle
public void setTitle(String title)
-
getInstanceShape
@OslcDescription("Resource Shape that provides hints as to resource property value-types and allowed values. ") @OslcPropertyDefinition("http://open-services.net/ns/core#instanceShape") @OslcRange("http://open-services.net/ns/core#ResourceShape") @OslcTitle("Instance Shape") public URI getInstanceShape()
-
setInstanceShape
public void setInstanceShape(URI instanceShape)
-
-