* The job's ID. *
*/ private String id; /** ** The job's destination annotation store. *
*/ private String destinationName; /** ** The job's service role ARN. *
*/ private String roleArn; /** ** The job's status. *
*/ private String status; /** ** The job's status message. *
*/ private String statusMessage; /** ** When the job was created. *
*/ private java.util.Date creationTime; /** ** When the job was updated. *
*/ private java.util.Date updateTime; /** ** When the job completed. *
*/ private java.util.Date completionTime; /** ** The job's imported items. *
*/ private java.util.List* The job's left normalization setting. *
*/ private Boolean runLeftNormalization; private FormatOptions formatOptions; /** ** The annotation schema generated by the parsed annotation data. *
*/ private java.util.Map* The job's ID. *
* * @param id * The job's ID. */ public void setId(String id) { this.id = id; } /** ** The job's ID. *
* * @return The job's ID. */ public String getId() { return this.id; } /** ** The job's ID. *
* * @param id * The job's ID. * @return Returns a reference to this object so that method calls can be chained together. */ public GetAnnotationImportJobResult withId(String id) { setId(id); return this; } /** ** The job's destination annotation store. *
* * @param destinationName * The job's destination annotation store. */ public void setDestinationName(String destinationName) { this.destinationName = destinationName; } /** ** The job's destination annotation store. *
* * @return The job's destination annotation store. */ public String getDestinationName() { return this.destinationName; } /** ** The job's destination annotation store. *
* * @param destinationName * The job's destination annotation store. * @return Returns a reference to this object so that method calls can be chained together. */ public GetAnnotationImportJobResult withDestinationName(String destinationName) { setDestinationName(destinationName); return this; } /** ** The job's service role ARN. *
* * @param roleArn * The job's service role ARN. */ public void setRoleArn(String roleArn) { this.roleArn = roleArn; } /** ** The job's service role ARN. *
* * @return The job's service role ARN. */ public String getRoleArn() { return this.roleArn; } /** ** The job's service role ARN. *
* * @param roleArn * The job's service role ARN. * @return Returns a reference to this object so that method calls can be chained together. */ public GetAnnotationImportJobResult withRoleArn(String roleArn) { setRoleArn(roleArn); return this; } /** ** The job's status. *
* * @param status * The job's status. * @see JobStatus */ public void setStatus(String status) { this.status = status; } /** ** The job's status. *
* * @return The job's status. * @see JobStatus */ public String getStatus() { return this.status; } /** ** The job's status. *
* * @param status * The job's status. * @return Returns a reference to this object so that method calls can be chained together. * @see JobStatus */ public GetAnnotationImportJobResult withStatus(String status) { setStatus(status); return this; } /** ** The job's status. *
* * @param status * The job's status. * @return Returns a reference to this object so that method calls can be chained together. * @see JobStatus */ public GetAnnotationImportJobResult withStatus(JobStatus status) { this.status = status.toString(); return this; } /** ** The job's status message. *
* * @param statusMessage * The job's status message. */ public void setStatusMessage(String statusMessage) { this.statusMessage = statusMessage; } /** ** The job's status message. *
* * @return The job's status message. */ public String getStatusMessage() { return this.statusMessage; } /** ** The job's status message. *
* * @param statusMessage * The job's status message. * @return Returns a reference to this object so that method calls can be chained together. */ public GetAnnotationImportJobResult withStatusMessage(String statusMessage) { setStatusMessage(statusMessage); return this; } /** ** When the job was created. *
* * @param creationTime * When the job was created. */ public void setCreationTime(java.util.Date creationTime) { this.creationTime = creationTime; } /** ** When the job was created. *
* * @return When the job was created. */ public java.util.Date getCreationTime() { return this.creationTime; } /** ** When the job was created. *
* * @param creationTime * When the job was created. * @return Returns a reference to this object so that method calls can be chained together. */ public GetAnnotationImportJobResult withCreationTime(java.util.Date creationTime) { setCreationTime(creationTime); return this; } /** ** When the job was updated. *
* * @param updateTime * When the job was updated. */ public void setUpdateTime(java.util.Date updateTime) { this.updateTime = updateTime; } /** ** When the job was updated. *
* * @return When the job was updated. */ public java.util.Date getUpdateTime() { return this.updateTime; } /** ** When the job was updated. *
* * @param updateTime * When the job was updated. * @return Returns a reference to this object so that method calls can be chained together. */ public GetAnnotationImportJobResult withUpdateTime(java.util.Date updateTime) { setUpdateTime(updateTime); return this; } /** ** When the job completed. *
* * @param completionTime * When the job completed. */ public void setCompletionTime(java.util.Date completionTime) { this.completionTime = completionTime; } /** ** When the job completed. *
* * @return When the job completed. */ public java.util.Date getCompletionTime() { return this.completionTime; } /** ** When the job completed. *
* * @param completionTime * When the job completed. * @return Returns a reference to this object so that method calls can be chained together. */ public GetAnnotationImportJobResult withCompletionTime(java.util.Date completionTime) { setCompletionTime(completionTime); return this; } /** ** The job's imported items. *
* * @return The job's imported items. */ public java.util.List* The job's imported items. *
* * @param items * The job's imported items. */ public void setItems(java.util.Collection* The job's imported items. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setItems(java.util.Collection)} or {@link #withItems(java.util.Collection)} if you want to override the * existing values. *
* * @param items * The job's imported items. * @return Returns a reference to this object so that method calls can be chained together. */ public GetAnnotationImportJobResult withItems(AnnotationImportItemDetail... items) { if (this.items == null) { setItems(new java.util.ArrayList* The job's imported items. *
* * @param items * The job's imported items. * @return Returns a reference to this object so that method calls can be chained together. */ public GetAnnotationImportJobResult withItems(java.util.Collection* The job's left normalization setting. *
* * @param runLeftNormalization * The job's left normalization setting. */ public void setRunLeftNormalization(Boolean runLeftNormalization) { this.runLeftNormalization = runLeftNormalization; } /** ** The job's left normalization setting. *
* * @return The job's left normalization setting. */ public Boolean getRunLeftNormalization() { return this.runLeftNormalization; } /** ** The job's left normalization setting. *
* * @param runLeftNormalization * The job's left normalization setting. * @return Returns a reference to this object so that method calls can be chained together. */ public GetAnnotationImportJobResult withRunLeftNormalization(Boolean runLeftNormalization) { setRunLeftNormalization(runLeftNormalization); return this; } /** ** The job's left normalization setting. *
* * @return The job's left normalization setting. */ public Boolean isRunLeftNormalization() { return this.runLeftNormalization; } /** * @param formatOptions */ public void setFormatOptions(FormatOptions formatOptions) { this.formatOptions = formatOptions; } /** * @return */ public FormatOptions getFormatOptions() { return this.formatOptions; } /** * @param formatOptions * @return Returns a reference to this object so that method calls can be chained together. */ public GetAnnotationImportJobResult withFormatOptions(FormatOptions formatOptions) { setFormatOptions(formatOptions); return this; } /** ** The annotation schema generated by the parsed annotation data. *
* * @return The annotation schema generated by the parsed annotation data. */ public java.util.Map* The annotation schema generated by the parsed annotation data. *
* * @param annotationFields * The annotation schema generated by the parsed annotation data. */ public void setAnnotationFields(java.util.Map* The annotation schema generated by the parsed annotation data. *
* * @param annotationFields * The annotation schema generated by the parsed annotation data. * @return Returns a reference to this object so that method calls can be chained together. */ public GetAnnotationImportJobResult withAnnotationFields(java.util.Map