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

How to use
TReceive
in
com.ebmwebsourcing.easybpel.model.bpel.executable

Best Java code snippets using com.ebmwebsourcing.easybpel.model.bpel.executable.TReceive (Showing top 18 results out of 315)

origin: com.ebmwebsourcing.easybpel/model-bpel-api

public void hashCode(HashCodeBuilder hashCodeBuilder) {
  super.hashCode(hashCodeBuilder);
  hashCodeBuilder.append(this.getCorrelations());
  hashCodeBuilder.append(this.getFromParts());
  hashCodeBuilder.append(this.getPartnerLink());
  hashCodeBuilder.append(this.getPortType());
  hashCodeBuilder.append(this.getOperation());
  hashCodeBuilder.append(this.getVariable());
  hashCodeBuilder.append(this.getCreateInstance());
  hashCodeBuilder.append(this.getMessageExchange());
}
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.impl

public void setCreateInstance(boolean b) {
  TBoolean tb;
  if(b){
    tb = TBoolean.YES;
  }else{
    tb = TBoolean.NO;
  }
  this.model.setCreateInstance(tb);
  
}
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.impl

public void setMessageExchange(String me) {
  this.model.setMessageExchange(me);
}
origin: com.ebmwebsourcing.easybpel/model-bpel-api

public Object copyTo(Object target, CopyBuilder copyBuilder) {
  final TReceive copy = ((target == null)?((TReceive) createCopy()):((TReceive) target));
  super.copyTo(copy, copyBuilder);
    sourceCorrelations = this.getCorrelations();
    TCorrelations copyCorrelations = ((TCorrelations) copyBuilder.copy(sourceCorrelations));
    copy.setCorrelations(copyCorrelations);
    sourceFromParts = this.getFromParts();
    TFromParts copyFromParts = ((TFromParts) copyBuilder.copy(sourceFromParts));
    copy.setFromParts(copyFromParts);
    sourcePartnerLink = this.getPartnerLink();
    String copyPartnerLink = ((String) copyBuilder.copy(sourcePartnerLink));
    copy.setPartnerLink(copyPartnerLink);
    sourcePortType = this.getPortType();
    QName copyPortType = ((QName) copyBuilder.copy(sourcePortType));
    copy.setPortType(copyPortType);
    sourceOperation = this.getOperation();
    String copyOperation = ((String) copyBuilder.copy(sourceOperation));
    copy.setOperation(copyOperation);
    sourceVariable = this.getVariable();
    String copyVariable = ((String) copyBuilder.copy(sourceVariable));
    copy.setVariable(copyVariable);
    sourceCreateInstance = this.getCreateInstance();
    TBoolean copyCreateInstance = ((TBoolean) copyBuilder.copy(sourceCreateInstance));
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.impl

  @SuppressWarnings("unchecked")
  public ReceiveImpl(final TReceive model, final BPELElement parent) {
    super(Constants._Receive_QNAME, model, parent);
    if(this.model.getCorrelations() != null) {
      this.correlations = new ArrayList<Correlation>();
      for(final TCorrelation corr: this.model.getCorrelations().getCorrelation()) {
        this.correlations.add(new CorrelationImpl(corr, this.model.getCorrelations(), this)); 
      }
      
    }
    log.finest("[DEBUG] CreateInstance is set to  "+String.valueOf(this.model.getCreateInstance())+" in JAXB model...");
//        TBoolean tb = model.getCreateInstance();
//        if(tb.compareTo(TBoolean.NO)==0){
//            createInstance = false;
//        }else{
//            createInstance = true;
//        }
  }
 
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.impl

if((((TReceive)((BPELElementImpl)this.getActivity()).getModel()).getFromParts() != null) && (((TReceive)((BPELElementImpl)this.getActivity()).getModel()).getFromParts().getFromPart().size() > 0)) {
  BPELStaticAnalysisImpl.getInstance().addInfo(new BPELInfoImpl(this.getActivity(), "In receive " + this.getActivity().getName() + " => [BPEL engine Restriction] Sorry, but the activity fromPart is not supported by BPEL engine for the moment. Use assign element after this receive instead"));
  BPELStaticAnalysisImpl.getInstance().addError(new BPELErrorImpl(this.getActivity(), new BPELException("In receive " + this.getActivity().getName() + " => [BPEL engine Restriction] Sorry, but the activity fromPart is not supported by BPEL engine for the moment. Use assign element after this receive instead")));
if(((TReceive)((BPELElementImpl)this.getActivity()).getModel()).getMessageExchange() != null) {
  BPELStaticAnalysisImpl.getInstance().addInfo(new BPELInfoImpl(this.getActivity(), "In receive " + this.getActivity().getName() + " => [BPEL engine Restriction] Sorry, but the messageExchange attribute is not supported by BPEL engine for the moment."));
  BPELStaticAnalysisImpl.getInstance().addError(new BPELErrorImpl(this.getActivity(), new BPELException("In receive " + this.getActivity().getName() + " => [BPEL engine Restriction] Sorry, but the activity fromPart is not supported by BPEL engine for the moment. Use assign element after this receive instead")));
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.impl

public String getInputVariable() {
  return this.model.getVariable();
}
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.impl

public String getMessageExchange() {
  return this.model.getMessageExchange();
}
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.impl

public String getOperation() {
  return this.model.getOperation();
}
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.impl

public QName getInterface() {
  return this.model.getPortType();
}
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.impl

public String getPartnerLink() {
  return this.model.getPartnerLink();
}
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.impl

public boolean getCreateInstance() {
  boolean res = false;
  if((this.model.getCreateInstance() != null) && this.model.getCreateInstance().equals(TBoolean.YES) ) {
    res = true;
  } else {
    res = false;
  }
  return res;
}
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.api

public Object copyTo(Object target, CopyBuilder copyBuilder) {
  final TReceive copy = ((target == null)?((TReceive) createCopy()):((TReceive) target));
  super.copyTo(copy, copyBuilder);
    sourceCorrelations = this.getCorrelations();
    TCorrelations copyCorrelations = ((TCorrelations) copyBuilder.copy(sourceCorrelations));
    copy.setCorrelations(copyCorrelations);
    sourceFromParts = this.getFromParts();
    TFromParts copyFromParts = ((TFromParts) copyBuilder.copy(sourceFromParts));
    copy.setFromParts(copyFromParts);
    sourcePartnerLink = this.getPartnerLink();
    String copyPartnerLink = ((String) copyBuilder.copy(sourcePartnerLink));
    copy.setPartnerLink(copyPartnerLink);
    sourcePortType = this.getPortType();
    QName copyPortType = ((QName) copyBuilder.copy(sourcePortType));
    copy.setPortType(copyPortType);
    sourceOperation = this.getOperation();
    String copyOperation = ((String) copyBuilder.copy(sourceOperation));
    copy.setOperation(copyOperation);
    sourceVariable = this.getVariable();
    String copyVariable = ((String) copyBuilder.copy(sourceVariable));
    copy.setVariable(copyVariable);
    sourceCreateInstance = this.getCreateInstance();
    TBoolean copyCreateInstance = ((TBoolean) copyBuilder.copy(sourceCreateInstance));
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.api

public void hashCode(HashCodeBuilder hashCodeBuilder) {
  super.hashCode(hashCodeBuilder);
  hashCodeBuilder.append(this.getCorrelations());
  hashCodeBuilder.append(this.getFromParts());
  hashCodeBuilder.append(this.getPartnerLink());
  hashCodeBuilder.append(this.getPortType());
  hashCodeBuilder.append(this.getOperation());
  hashCodeBuilder.append(this.getVariable());
  hashCodeBuilder.append(this.getCreateInstance());
  hashCodeBuilder.append(this.getMessageExchange());
}
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.api

public void equals(Object object, EqualsBuilder equalsBuilder) {
  if (!(object instanceof TReceive)) {
    equalsBuilder.appendSuper(false);
    return ;
  }
  if (this == object) {
    return ;
  }
  super.equals(object, equalsBuilder);
  final TReceive that = ((TReceive) object);
  equalsBuilder.append(this.getCorrelations(), that.getCorrelations());
  equalsBuilder.append(this.getFromParts(), that.getFromParts());
  equalsBuilder.append(this.getPartnerLink(), that.getPartnerLink());
  equalsBuilder.append(this.getPortType(), that.getPortType());
  equalsBuilder.append(this.getOperation(), that.getOperation());
  equalsBuilder.append(this.getVariable(), that.getVariable());
  equalsBuilder.append(this.getCreateInstance(), that.getCreateInstance());
  equalsBuilder.append(this.getMessageExchange(), that.getMessageExchange());
}
origin: com.ebmwebsourcing.easybpel/model-bpel-api

public void equals(Object object, EqualsBuilder equalsBuilder) {
  if (!(object instanceof TReceive)) {
    equalsBuilder.appendSuper(false);
    return ;
  }
  if (this == object) {
    return ;
  }
  super.equals(object, equalsBuilder);
  final TReceive that = ((TReceive) object);
  equalsBuilder.append(this.getCorrelations(), that.getCorrelations());
  equalsBuilder.append(this.getFromParts(), that.getFromParts());
  equalsBuilder.append(this.getPartnerLink(), that.getPartnerLink());
  equalsBuilder.append(this.getPortType(), that.getPortType());
  equalsBuilder.append(this.getOperation(), that.getOperation());
  equalsBuilder.append(this.getVariable(), that.getVariable());
  equalsBuilder.append(this.getCreateInstance(), that.getCreateInstance());
  equalsBuilder.append(this.getMessageExchange(), that.getMessageExchange());
}
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.api

theCorrelations = this.getCorrelations();
toStringBuilder.append("correlations", theCorrelations);
theFromParts = this.getFromParts();
toStringBuilder.append("fromParts", theFromParts);
thePartnerLink = this.getPartnerLink();
toStringBuilder.append("partnerLink", thePartnerLink);
thePortType = this.getPortType();
toStringBuilder.append("portType", thePortType);
theOperation = this.getOperation();
toStringBuilder.append("operation", theOperation);
theVariable = this.getVariable();
toStringBuilder.append("variable", theVariable);
theCreateInstance = this.getCreateInstance();
toStringBuilder.append("createInstance", theCreateInstance);
theMessageExchange = this.getMessageExchange();
toStringBuilder.append("messageExchange", theMessageExchange);
origin: com.ebmwebsourcing.easybpel/model-bpel-api

theCorrelations = this.getCorrelations();
toStringBuilder.append("correlations", theCorrelations);
theFromParts = this.getFromParts();
toStringBuilder.append("fromParts", theFromParts);
thePartnerLink = this.getPartnerLink();
toStringBuilder.append("partnerLink", thePartnerLink);
thePortType = this.getPortType();
toStringBuilder.append("portType", thePortType);
theOperation = this.getOperation();
toStringBuilder.append("operation", theOperation);
theVariable = this.getVariable();
toStringBuilder.append("variable", theVariable);
theCreateInstance = this.getCreateInstance();
toStringBuilder.append("createInstance", theCreateInstance);
theMessageExchange = this.getMessageExchange();
toStringBuilder.append("messageExchange", theMessageExchange);
com.ebmwebsourcing.easybpel.model.bpel.executableTReceive

Javadoc

XSD Authors: The child element correlations needs to be a Local Element Declaration, because there is another correlations element defined for the invoke activity.

Java class for tReceive complex type.

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

 
<complexType name="tReceive"> 
<complexContent> 
<extension base="{http://docs.oasis-open.org/wsbpel/2.0/process/executable}tActivity"> 
<sequence> 
<element name="correlations" type="{http://docs.oasis-open.org/wsbpel/2.0/process/executable}tCorrelations" minOccurs="0"/> 
<element ref="{http://docs.oasis-open.org/wsbpel/2.0/process/executable}fromParts" minOccurs="0"/> 
</sequence> 
<attribute name="partnerLink" use="required" type="{http://www.w3.org/2001/XMLSchema}NCName" /> 
<attribute name="portType" type="{http://www.w3.org/2001/XMLSchema}QName" /> 
<attribute name="operation" use="required" type="{http://www.w3.org/2001/XMLSchema}NCName" /> 
<attribute name="variable" type="{http://docs.oasis-open.org/wsbpel/2.0/process/executable}BPELVariableName" /> 
<attribute name="createInstance" type="{http://docs.oasis-open.org/wsbpel/2.0/process/executable}tBoolean" default="no" /> 
<attribute name="messageExchange" type="{http://www.w3.org/2001/XMLSchema}NCName" /> 
<anyAttribute processContents='lax' namespace='##other'/> 
</extension> 
</complexContent> 
</complexType> 

Most used methods

  • getCorrelations
    Gets the value of the correlations property.
  • getCreateInstance
    Gets the value of the createInstance property.
  • getFromParts
    Gets the value of the fromParts property.
  • getMessageExchange
    Gets the value of the messageExchange property.
  • getOperation
    Gets the value of the operation property.
  • getPartnerLink
    Gets the value of the partnerLink property.
  • getPortType
    Gets the value of the portType property.
  • getVariable
    Gets the value of the variable property.
  • setCreateInstance
    Sets the value of the createInstance property.
  • setMessageExchange
    Sets the value of the messageExchange property.
  • setOperation
    Sets the value of the operation property.
  • setPartnerLink
    Sets the value of the partnerLink property.
  • setOperation,
  • setPartnerLink,
  • setPortType,
  • setVariable,
  • <init>,
  • copyTo,
  • createCopy,
  • equals,
  • hashCode,
  • setCorrelations

Popular in Java

  • Finding current android device location
  • getSystemService (Context)
  • startActivity (Activity)
  • getContentResolver (Context)
  • PrintStream (java.io)
    Fake signature of an existing Java class.
  • Hashtable (java.util)
    A plug-in replacement for JDK1.5 java.util.Hashtable. This version is based on org.cliffc.high_scale
  • Timer (java.util)
    Timers schedule one-shot or recurring TimerTask for execution. Prefer java.util.concurrent.Scheduled
  • AtomicInteger (java.util.concurrent.atomic)
    An int value that may be updated atomically. See the java.util.concurrent.atomic package specificati
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
  • Best IntelliJ 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