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

How to use
getId
method
in
com.ebmwebsourcing.petalsbpm.business.domain.bpmn2.to.api.standard.common.IErrorBean

Best Java code snippets using com.ebmwebsourcing.petalsbpm.business.domain.bpmn2.to.api.standard.common.IErrorBean.getId (Showing top 3 results out of 315)

origin: com.ebmwebsourcing.petalsbpm/petalsbpm-domain

@Override
public void visitOperationError(IErrorBean msg,IOperationBean opBean) {
  if(msg.getId().equals(this.id) && bean==null){bean = msg;}
}
@Override
origin: com.ebmwebsourcing.petalsbpm/petalsbpm-service

private static OperationBean adaptOperation(DefinitionsBean defs, Operation op) {
  OperationBean opBean = new OperationBean(op.getId());
  setDocumentationAndExtensions(opBean, op);
  opBean.setName(op.getName());
  opBean.setMessageIn(defs.getMessageById(op.getInMessageRef().getLocalPart()));
  if(op.getOutMessageRef()!=null){
    opBean.setMessageOut(defs.getMessageById(op.getOutMessageRef().getLocalPart()));
  }
  if(op.getErrorRef()!=null){
    for(QName qn : op.getErrorRef()){
      for(IErrorBean err : defs.getErrors()) {
        if(err.getId().equals(qn.getLocalPart())) {
          opBean.addError(err);
          break;
        }
      }
    }
  }
  if(op.hasImplementationRef()){
    opBean.setWsdlImplementationRef(getStringFromQname(op.getImplementationRef(), defs));
    //opBean.setWsdlImplementationRef(op.getImplementationRef().toString());
  }
  return opBean;
}
origin: com.ebmwebsourcing.petalsbpm/petalsbpm-service

@Override
public void visitError(IErrorBean eb) {
  Error e = newInstance(Error.class);
  e.setId(eb.getId());
  e.setName(eb.getName());
  e.setErrorCode(eb.getErrorCode());
  setDocumentationAndExtensions(e, eb);
  if(eb.getStructureRef()!=null){
    e.setStructureRef(getBaseElementRef(eb.getStructureRef()));
  }
  defs.addRootElement(e);
}

com.ebmwebsourcing.petalsbpm.business.domain.bpmn2.to.api.standard.commonIErrorBeangetId

Popular methods of IErrorBean

  • getErrorCode
  • getName
  • getStructureRef
  • setErrorCode
  • setName
  • setStructureRef

Popular in Java

  • Reading from database using SQL prepared statement
  • onRequestPermissionsResult (Fragment)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • getContentResolver (Context)
  • HttpURLConnection (java.net)
    An URLConnection for HTTP (RFC 2616 [http://tools.ietf.org/html/rfc2616]) used to send and receive d
  • URL (java.net)
    A Uniform Resource Locator that identifies the location of an Internet resource as specified by RFC
  • NoSuchElementException (java.util)
    Thrown when trying to retrieve an element past the end of an Enumeration or Iterator.
  • TreeSet (java.util)
    TreeSet is an implementation of SortedSet. All optional operations (adding and removing) are support
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
  • IsNull (org.hamcrest.core)
    Is the value null?
  • Top Sublime Text 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