Class CiAttributes
- java.lang.Object
- 
- com.xebialabs.deployit.plugin.api.udm.CiAttributes
 
- 
- All Implemented Interfaces:
- java.io.Serializable
 
 public class CiAttributes extends java.lang.Object implements java.io.SerializableA container for metadata about CI's- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description CiAttributes(java.lang.String createdBy, org.joda.time.DateTime createdAt, java.lang.String lastModifiedBy, org.joda.time.DateTime lastModifiedAt, java.lang.Integer scmTraceabilityDataId)Constructs a CiAttributes object with the given parameters
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description org.joda.time.DateTimegetCreatedAt()The original creation date of this CIjava.lang.StringgetCreatedBy()Get the name of the user that originally created this CIorg.joda.time.DateTimegetLastModifiedAt()Get the last modification date for this CIjava.lang.StringgetLastModifiedBy()Get the name of the user that last modified something about this CIjava.lang.IntegergetScmTraceabilityDataId()Get the id of scm traceability datavoidsetScmTraceabilityDataId(java.lang.Integer scmTraceabilityDataId)Set the id of scm traceability data
 
- 
- 
- 
Constructor Detail- 
CiAttributespublic CiAttributes(java.lang.String createdBy, org.joda.time.DateTime createdAt, java.lang.String lastModifiedBy, org.joda.time.DateTime lastModifiedAt, java.lang.Integer scmTraceabilityDataId)Constructs a CiAttributes object with the given parameters- Parameters:
- createdBy- - the original creator of the CI
- createdAt- - the creation date of the CI
- lastModifiedBy- - the user that last modified the CI
- lastModifiedAt- - the last modification date for the CI
- scmTraceabilityDataId- - id of scm traceability data
 
 
- 
 - 
Method Detail- 
getCreatedBypublic java.lang.String getCreatedBy() Get the name of the user that originally created this CI- Returns:
- a String
 
 - 
getCreatedAtpublic org.joda.time.DateTime getCreatedAt() The original creation date of this CI- Returns:
- a Calendar
 
 - 
getLastModifiedBypublic java.lang.String getLastModifiedBy() Get the name of the user that last modified something about this CI- Returns:
- a String
 
 - 
getLastModifiedAtpublic org.joda.time.DateTime getLastModifiedAt() Get the last modification date for this CI- Returns:
- a Calendar
 
 - 
getScmTraceabilityDataIdpublic java.lang.Integer getScmTraceabilityDataId() Get the id of scm traceability data- Returns:
- an Integer
 
 - 
setScmTraceabilityDataIdpublic void setScmTraceabilityDataId(java.lang.Integer scmTraceabilityDataId) Set the id of scm traceability data- Parameters:
- scmTraceabilityDataId- new data id
 
 
- 
 
-