Tabnine Logo
TaskData
Code IndexAdd Tabnine to your IDE (free)

How to use
TaskData
in
org.kie.remote.jaxb.gen

Best Java code snippets using org.kie.remote.jaxb.gen.TaskData (Showing top 12 results out of 315)

origin: org.kie.remote/kie-remote-client

/**
 * Create an instance of {@link TaskData }
 * 
 */
public TaskData createTaskData() {
  return new TaskData();
}
origin: org.kie.remote/kie-remote-client

@Override
public String getDeploymentId() {
  return this.taskData.getDeploymentId();
}
origin: org.kie.remote/kie-remote-client

@Override
public long getDocumentContentId() {
  return this.taskData.getDocumentContentId();
}
origin: org.kie.remote/kie-remote-client

private static org.kie.remote.jaxb.gen.TaskData convertKieTaskDataToGenTaskData(TaskData kieTaskData ) {
  org.kie.remote.jaxb.gen.TaskData genTaskData = null;
  if( kieTaskData != null ) {
    genTaskData = new org.kie.remote.jaxb.gen.TaskData();
    genTaskData.setStatus(kieTaskData.getStatus());
    genTaskData.setPreviousStatus(kieTaskData.getPreviousStatus());
    User user = kieTaskData.getActualOwner();
    genTaskData.setActualOwner(convertKieUserToStringId(user));
    genTaskData.setCreatedBy(convertKieUserToStringId(kieTaskData.getCreatedBy()));
    genTaskData.setCreatedOn(convertDateToXmlGregorianCalendar(kieTaskData.getCreatedOn()));
    Date date = kieTaskData.getActivationTime();
    genTaskData.setActivationTime(convertDateToXmlGregorianCalendar(date));
    date = kieTaskData.getExpirationTime();
    genTaskData.setExpirationTime(convertDateToXmlGregorianCalendar(date));
    genTaskData.setSkipable(kieTaskData.isSkipable());
    genTaskData.setWorkItemId(kieTaskData.getWorkItemId());
    genTaskData.setProcessInstanceId(kieTaskData.getProcessInstanceId());
    genTaskData.setProcessId(kieTaskData.getProcessId());
    genTaskData.setDeploymentId(kieTaskData.getDeploymentId());
    genTaskData.setProcessSessionId(kieTaskData.getProcessSessionId());
    genTaskData.setDocumentType(kieTaskData.getDocumentType());
    genTaskData.setDocumentContentId(kieTaskData.getDocumentContentId());
    genTaskData.setOutputType(kieTaskData.getOutputType());
    genTaskData.setOutputContentId(kieTaskData.getOutputContentId());
    genTaskData.setFaultName(kieTaskData.getFaultName());
    genTaskData.setFaultType(kieTaskData.getFaultType());
    genTaskData.setFaultContentId(kieTaskData.getFaultContentId());
    List<Attachment> attachs = kieTaskData.getAttachments();
    if( attachs != null ) {
origin: org.kie.remote/kie-remote-client

@Override
public String getDocumentType() {
  return this.taskData.getDocumentType();
}
origin: org.kie.remote/kie-remote-client

@Override
public List<Comment> getComments() {
  List<Comment> commentList = new ArrayList<Comment>();
  if( this.taskData.getComments() == null || this.taskData.getComments().isEmpty() ) {
    return commentList;
  }
  for( org.kie.remote.jaxb.gen.Comment jaxbComment : this.taskData.getComments() ) {
    commentList.add(new JaxbCommentWrapper(jaxbComment));
  }
  return commentList;
}
origin: org.kie.remote/kie-remote-client

@Override
public List<Attachment> getAttachments() {
  List<Attachment> attachmentList = new ArrayList<Attachment>();
  if( this.taskData.getAttachments() == null || this.taskData.getAttachments().isEmpty() ) {
    return attachmentList;
  }
  for( org.kie.remote.jaxb.gen.Attachment jaxbAttachment : this.taskData.getAttachments() ) {
    attachmentList.add(new JaxbAttachmentWrapper(jaxbAttachment));
  }
  return attachmentList;
}
origin: org.kie.remote/kie-remote-client

@Override
public Date getActivationTime() {
  return convertXmlGregCalToDate(this.taskData.getActivationTime());
}
origin: org.kie.remote/kie-remote-client

@Override
public User getCreatedBy() {
  return convertStringIdToUser(this.taskData.getCreatedBy());
}
origin: org.kie.remote/kie-remote-client

@Override
public User getActualOwner() {
  return convertStringIdToUser(this.taskData.getActualOwner());
}
origin: org.kie.remote/kie-remote-client

@Override
public Date getCreatedOn() {
  return convertXmlGregCalToDate(this.taskData.getCreatedOn());
}
origin: org.kie.remote/kie-remote-jaxb-gen

/**
 * Create an instance of {@link TaskData }
 * 
 */
public TaskData createTaskData() {
  return new TaskData();
}
org.kie.remote.jaxb.genTaskData

Javadoc

Java class for task-data complex type.

The following schema fragment specifies the expected content contained within this class.

 
<complexType name="task-data"> 
<complexContent> 
<extension base="{}abstractJaxbTaskObject"> 
<sequence> 
<element name="status" type="{}status" minOccurs="0"/> 
<element name="previousStatus" type="{}status" minOccurs="0"/> 
<element name="actual-owner" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 
<element name="created-by" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 
<element name="created-on" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> 
<element name="activation-time" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> 
<element name="expiration-time" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> 
<element name="skipable" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> 
<element name="work-item-id" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/> 
<element name="process-instance-id" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/> 
<element name="document-type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 
<element name="document-access-type" type="{}accessType" minOccurs="0"/> 
<element name="document-content-id" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/> 
<element name="output-type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 
<element name="output-access-type" type="{}accessType" minOccurs="0"/> 
<element name="output-content-id" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/> 
<element name="fault-name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 
<element name="fault-access-type" type="{}accessType" minOccurs="0"/> 
<element name="fault-type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 
<element name="fault-content-id" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/> 
<element name="parent-id" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/> 
<element name="process-id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 
<element name="process-session-id" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/> 
<element name="comments" type="{}jaxbComment" maxOccurs="unbounded" minOccurs="0"/> 
<element name="attachments" type="{}attachment" maxOccurs="unbounded" minOccurs="0"/> 
<element name="deployment-id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 
</sequence> 
</extension> 
</complexContent> 
</complexType> 

Most used methods

  • <init>
  • getActivationTime
    Gets the value of the activationTime property.
  • getActualOwner
    Gets the value of the actualOwner property.
  • getAttachments
    Gets the value of the attachments property. This accessor method returns a reference to the live lis
  • getComments
    Gets the value of the comments property. This accessor method returns a reference to the live list,
  • getCreatedBy
    Gets the value of the createdBy property.
  • getCreatedOn
    Gets the value of the createdOn property.
  • getDeploymentId
    Gets the value of the deploymentId property.
  • getDocumentContentId
    Gets the value of the documentContentId property.
  • getDocumentType
    Gets the value of the documentType property.
  • getExpirationTime
    Gets the value of the expirationTime property.
  • getFaultContentId
    Gets the value of the faultContentId property.
  • getExpirationTime,
  • getFaultContentId,
  • getFaultName,
  • getFaultType,
  • getOutputContentId,
  • getOutputType,
  • getParentId,
  • getPreviousStatus,
  • getProcessId,
  • getProcessInstanceId

Popular in Java

  • Reactive rest calls using spring rest template
  • compareTo (BigDecimal)
  • findViewById (Activity)
  • addToBackStack (FragmentTransaction)
  • BigDecimal (java.math)
    An immutable arbitrary-precision signed decimal.A value is represented by an arbitrary-precision "un
  • KeyStore (java.security)
    KeyStore is responsible for maintaining cryptographic keys and their owners. The type of the syste
  • StringTokenizer (java.util)
    Breaks a string into tokens; new code should probably use String#split.> // Legacy code: StringTo
  • TreeMap (java.util)
    Walk the nodes of the tree left-to-right or right-to-left. Note that in descending iterations, next
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • Handler (java.util.logging)
    A Handler object accepts a logging request and exports the desired messages to a target, for example
  • Top Vim plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now