congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
TInvoke
Code IndexAdd Tabnine to your IDE (free)

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

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

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

public void hashCode(HashCodeBuilder hashCodeBuilder) {
  super.hashCode(hashCodeBuilder);
  hashCodeBuilder.append(this.getCorrelations());
  hashCodeBuilder.append(this.getCatch());
  hashCodeBuilder.append(this.getCatchAll());
  hashCodeBuilder.append(this.getCompensationHandler());
  hashCodeBuilder.append(this.getToParts());
  hashCodeBuilder.append(this.getFromParts());
  hashCodeBuilder.append(this.getPartnerLink());
  hashCodeBuilder.append(this.getPortType());
  hashCodeBuilder.append(this.getOperation());
  hashCodeBuilder.append(this.getInputVariable());
  hashCodeBuilder.append(this.getOutputVariable());
}
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.api

public Object copyTo(Object target, CopyBuilder copyBuilder) {
  final TInvoke copy = ((target == null)?((TInvoke) createCopy()):((TInvoke) target));
  super.copyTo(copy, copyBuilder);
    sourceCorrelations = this.getCorrelations();
    TCorrelationsWithPattern copyCorrelations = ((TCorrelationsWithPattern) copyBuilder.copy(sourceCorrelations));
    copy.setCorrelations(copyCorrelations);
    sourceCatch = this.getCatch();
    List<TCatch> copyCatch = ((List<TCatch> ) copyBuilder.copy(sourceCatch));
    copy._catch = null;
    List<TCatch> uniqueCatchl = copy.getCatch();
    uniqueCatchl.addAll(copyCatch);
    sourceCatchAll = this.getCatchAll();
    TActivityContainer copyCatchAll = ((TActivityContainer) copyBuilder.copy(sourceCatchAll));
    copy.setCatchAll(copyCatchAll);
    sourceCompensationHandler = this.getCompensationHandler();
    TActivityContainer copyCompensationHandler = ((TActivityContainer) copyBuilder.copy(sourceCompensationHandler));
    copy.setCompensationHandler(copyCompensationHandler);
    sourceToParts = this.getToParts();
    TToParts copyToParts = ((TToParts) copyBuilder.copy(sourceToParts));
    copy.setToParts(copyToParts);
    sourceFromParts = this.getFromParts();
    TFromParts copyFromParts = ((TFromParts) copyBuilder.copy(sourceFromParts));
    copy.setFromParts(copyFromParts);
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.impl

public InvokeImpl(final TInvoke model, final BPELElement parent) {
  super(Constants._Invoke_QNAME, model, parent);
  if(this.getInterface() != null) {
    if((this.getInterface().getNamespaceURI() == null) || this.getInterface().getNamespaceURI().equals("")) {
      BPELStaticAnalysisImpl.getInstance().addError(new BPELErrorImpl(this, new BPELException("In invoke " + this.getName() + ": this interface \"" + this.getInterface() + "\" is not associated to a namespace ")));
    }
  }
  // get all correlations
  if(this.model.getCorrelations() != null) {
    for(final TCorrelation corr: this.model.getCorrelations().getCorrelation()) {
      this.correlations.add(new CorrelationImpl(corr, this.model.getCorrelations(), this)); 
    }
  }
  // get all catchs
  if(this.model.getCatch() != null) {
    for(final TCatch catch_: this.model.getCatch()) {
      this.catchs.add(new CatchImpl(catch_, this)); 
    }
  }
  // get catchAll
  if(this.model.getCatchAll() != null) {
    this.catchAll = new CatchAllImpl(this.model.getCatchAll(), this); 
  }
}
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.impl

try {
  if((((TInvoke)((BPELElementImpl)this.getActivity()).getModel()).getFromParts() != null) && (((TInvoke)((BPELElementImpl)this.getActivity()).getModel()).getFromParts().getFromPart().size() > 0)) {
    BPELStaticAnalysisImpl.getInstance().addInfo(new BPELInfoImpl(this.getActivity(), "In invoke " + this.getActivity().getName() + " => [BPEL engine restriction] Sorry, but the fromPart activity is not supported by BPEL engine for the moment. Use assign element after this invoke instead"));
    BPELStaticAnalysisImpl.getInstance().addError(new BPELErrorImpl(this.getActivity(), new BPELException("In invoke " + this.getActivity().getName() + " => [BPEL engine restriction] Sorry, but the fromPart activity is not supported by BPEL engine for the moment. Use assign element after this invoke instead")));
  if((((TInvoke)((BPELElementImpl)this.getActivity()).getModel()).getToParts() != null) && (((TInvoke)((BPELElementImpl)this.getActivity()).getModel()).getToParts().getToPart().size() > 0)) {
    BPELStaticAnalysisImpl.getInstance().addInfo(new BPELInfoImpl(this.getActivity(), "In invoke " + this.getActivity().getName() + " => [BPEL engine restriction] Sorry, but the topart activity is not supported by BPEL engine for the moment. Use assign element before this invoke instead"));
    BPELStaticAnalysisImpl.getInstance().addError(new BPELErrorImpl(this.getActivity(), new BPELException("In invoke " + this.getActivity().getName() + " => [BPEL engine restriction] Sorry, but the topart activity is not supported by BPEL engine for the moment. Use assign element before this invoke instead")));
  if(((TInvoke)((BPELElementImpl)this.getActivity()).getModel()).getCompensationHandler() != null) {
    BPELStaticAnalysisImpl.getInstance().addInfo(new BPELInfoImpl(this.getActivity(), "In invoke " + this.getActivity().getName() + " => [BPEL engine restriction] Sorry, but compensationHandler is not supported by BPEL engine for the moment."));
    BPELStaticAnalysisImpl.getInstance().addError(new BPELErrorImpl(this.getActivity(), new BPELException("In invoke " + this.getActivity().getName() + " => [BPEL engine restriction] Sorry, but compensationHandler is not supported by BPEL engine for the moment.")));
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.impl

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

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

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

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

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

public Object copyTo(Object target, CopyBuilder copyBuilder) {
  final TInvoke copy = ((target == null)?((TInvoke) createCopy()):((TInvoke) target));
  super.copyTo(copy, copyBuilder);
    sourceCorrelations = this.getCorrelations();
    TCorrelationsWithPattern copyCorrelations = ((TCorrelationsWithPattern) copyBuilder.copy(sourceCorrelations));
    copy.setCorrelations(copyCorrelations);
    sourceCatch = this.getCatch();
    List<TCatch> copyCatch = ((List<TCatch> ) copyBuilder.copy(sourceCatch));
    copy._catch = null;
    List<TCatch> uniqueCatchl = copy.getCatch();
    uniqueCatchl.addAll(copyCatch);
    sourceCatchAll = this.getCatchAll();
    TActivityContainer copyCatchAll = ((TActivityContainer) copyBuilder.copy(sourceCatchAll));
    copy.setCatchAll(copyCatchAll);
    sourceCompensationHandler = this.getCompensationHandler();
    TActivityContainer copyCompensationHandler = ((TActivityContainer) copyBuilder.copy(sourceCompensationHandler));
    copy.setCompensationHandler(copyCompensationHandler);
    sourceToParts = this.getToParts();
    TToParts copyToParts = ((TToParts) copyBuilder.copy(sourceToParts));
    copy.setToParts(copyToParts);
    sourceFromParts = this.getFromParts();
    TFromParts copyFromParts = ((TFromParts) copyBuilder.copy(sourceFromParts));
    copy.setFromParts(copyFromParts);
origin: com.ebmwebsourcing.easybpel/model-bpel-api

public void hashCode(HashCodeBuilder hashCodeBuilder) {
  super.hashCode(hashCodeBuilder);
  hashCodeBuilder.append(this.getCorrelations());
  hashCodeBuilder.append(this.getCatch());
  hashCodeBuilder.append(this.getCatchAll());
  hashCodeBuilder.append(this.getCompensationHandler());
  hashCodeBuilder.append(this.getToParts());
  hashCodeBuilder.append(this.getFromParts());
  hashCodeBuilder.append(this.getPartnerLink());
  hashCodeBuilder.append(this.getPortType());
  hashCodeBuilder.append(this.getOperation());
  hashCodeBuilder.append(this.getInputVariable());
  hashCodeBuilder.append(this.getOutputVariable());
}
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.api

public void equals(Object object, EqualsBuilder equalsBuilder) {
  if (!(object instanceof TInvoke)) {
    equalsBuilder.appendSuper(false);
    return ;
  }
  if (this == object) {
    return ;
  }
  super.equals(object, equalsBuilder);
  final TInvoke that = ((TInvoke) object);
  equalsBuilder.append(this.getCorrelations(), that.getCorrelations());
  equalsBuilder.append(this.getCatch(), that.getCatch());
  equalsBuilder.append(this.getCatchAll(), that.getCatchAll());
  equalsBuilder.append(this.getCompensationHandler(), that.getCompensationHandler());
  equalsBuilder.append(this.getToParts(), that.getToParts());
  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.getInputVariable(), that.getInputVariable());
  equalsBuilder.append(this.getOutputVariable(), that.getOutputVariable());
}
origin: com.ebmwebsourcing.easybpel/model-bpel-api

public void equals(Object object, EqualsBuilder equalsBuilder) {
  if (!(object instanceof TInvoke)) {
    equalsBuilder.appendSuper(false);
    return ;
  }
  if (this == object) {
    return ;
  }
  super.equals(object, equalsBuilder);
  final TInvoke that = ((TInvoke) object);
  equalsBuilder.append(this.getCorrelations(), that.getCorrelations());
  equalsBuilder.append(this.getCatch(), that.getCatch());
  equalsBuilder.append(this.getCatchAll(), that.getCatchAll());
  equalsBuilder.append(this.getCompensationHandler(), that.getCompensationHandler());
  equalsBuilder.append(this.getToParts(), that.getToParts());
  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.getInputVariable(), that.getInputVariable());
  equalsBuilder.append(this.getOutputVariable(), that.getOutputVariable());
}
origin: com.ebmwebsourcing.easybpel/easybpel.model.bpel.api

theCorrelations = this.getCorrelations();
toStringBuilder.append("correlations", theCorrelations);
theCatch = this.getCatch();
toStringBuilder.append("_catch", theCatch);
theCatchAll = this.getCatchAll();
toStringBuilder.append("catchAll", theCatchAll);
theCompensationHandler = this.getCompensationHandler();
toStringBuilder.append("compensationHandler", theCompensationHandler);
theToParts = this.getToParts();
toStringBuilder.append("toParts", theToParts);
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);
theInputVariable = this.getInputVariable();
toStringBuilder.append("inputVariable", theInputVariable);
origin: com.ebmwebsourcing.easybpel/model-bpel-api

theCorrelations = this.getCorrelations();
toStringBuilder.append("correlations", theCorrelations);
theCatch = this.getCatch();
toStringBuilder.append("_catch", theCatch);
theCatchAll = this.getCatchAll();
toStringBuilder.append("catchAll", theCatchAll);
theCompensationHandler = this.getCompensationHandler();
toStringBuilder.append("compensationHandler", theCompensationHandler);
theToParts = this.getToParts();
toStringBuilder.append("toParts", theToParts);
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);
theInputVariable = this.getInputVariable();
toStringBuilder.append("inputVariable", theInputVariable);
com.ebmwebsourcing.easybpel.model.bpel.executableTInvoke

Javadoc

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

Java class for tInvoke complex type.

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

 
<complexType name="tInvoke"> 
<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}tCorrelationsWithPattern" minOccurs="0"/> 
<element ref="{http://docs.oasis-open.org/wsbpel/2.0/process/executable}catch" maxOccurs="unbounded" minOccurs="0"/> 
<element ref="{http://docs.oasis-open.org/wsbpel/2.0/process/executable}catchAll" minOccurs="0"/> 
<element ref="{http://docs.oasis-open.org/wsbpel/2.0/process/executable}compensationHandler" minOccurs="0"/> 
<element ref="{http://docs.oasis-open.org/wsbpel/2.0/process/executable}toParts" 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="inputVariable" type="{http://docs.oasis-open.org/wsbpel/2.0/process/executable}BPELVariableName" /> 
<attribute name="outputVariable" type="{http://docs.oasis-open.org/wsbpel/2.0/process/executable}BPELVariableName" /> 
<anyAttribute processContents='lax' namespace='##other'/> 
</extension> 
</complexContent> 
</complexType> 

Most used methods

  • getCatch
    Gets the value of the catch property. This accessor method returns a reference to the live list, not
  • getCatchAll
    Gets the value of the catchAll property.
  • getCompensationHandler
    Gets the value of the compensationHandler property.
  • getCorrelations
    Gets the value of the correlations property.
  • getFromParts
    Gets the value of the fromParts property.
  • getInputVariable
    Gets the value of the inputVariable property.
  • getOperation
    Gets the value of the operation property.
  • getOutputVariable
    Gets the value of the outputVariable property.
  • getPartnerLink
    Gets the value of the partnerLink property.
  • getPortType
    Gets the value of the portType property.
  • getToParts
    Gets the value of the toParts property.
  • setInputVariable
    Sets the value of the inputVariable property.
  • getToParts,
  • setInputVariable,
  • setOperation,
  • setOutputVariable,
  • setPartnerLink,
  • setPortType,
  • <init>,
  • copyTo,
  • createCopy,
  • equals

Popular in Java

  • Finding current android device location
  • onCreateOptionsMenu (Activity)
  • getSupportFragmentManager (FragmentActivity)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • UnknownHostException (java.net)
    Thrown when a hostname can not be resolved.
  • SecureRandom (java.security)
    This class generates cryptographically secure pseudo-random numbers. It is best to invoke SecureRand
  • ArrayList (java.util)
    ArrayList is an implementation of List, backed by an array. All optional operations including adding
  • Map (java.util)
    A Map is a data structure consisting of a set of keys and values in which each key is mapped to a si
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
  • JPanel (javax.swing)
  • CodeWhisperer alternatives
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