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

How to use
getName
method
in
com.ebmwebsourcing.petalsbpm.business.domain.bpmn2.to.api.standard.service.IOperationBean

Best Java code snippets using com.ebmwebsourcing.petalsbpm.business.domain.bpmn2.to.api.standard.service.IOperationBean.getName (Showing top 5 results out of 315)

origin: com.ebmwebsourcing.petalsbpm/definitions-editor

@Override
protected boolean isValid(IOperationBean data) {
  
  if (data.getName()!=null && data.getName().equals("")==false && data.getMessageIn()!=null && data.getMessageOut()!=null){
    return true;
  }
  
  return false;
}

origin: com.ebmwebsourcing.petalsbpm/petalsbpm-domain

public IOperationBean getOperationByName(String name) {
  for (IInterfaceBean itf : interfaces) {
    for (IOperationBean op : itf.getOperations()) {
      if (op.getName().equals(name)) {
        return op;
      }
    }
  }
  return null;
}
origin: com.ebmwebsourcing.petalsbpm/definitions-editor

 private void validate(IOperationBean operationBean){
   
   
   //check if operation is ok, if yes, add it to interface				
   if (operationBean.getName()!=null && operationBean.getName().equals("")==false && operationBean.getMessageIn()!=null && operationBean.getMessageOut()!=null){
     
     if (actualInterface.getOperations().contains(operationBean)==false) actualInterface.addOperation(operationBean);
     
     //if interface is ok
     if (actualInterface.getName()!=null  && actualInterface.getName().equals("")==false ){
       
       //add interface to definitions 
       interfaceController.fireEvent(new AddInterfaceEvent(actualInterface));
       
     }
   }
   
}
 
origin: com.ebmwebsourcing.petalsbpm/definitions-editor

@Override
protected Object[] convertDataToObject(IOperationBean data) {
  
  Object[] object = new Object[5];
  
  object[0] = data.getName();
  object[1] = data.getMessageIn();
  object[2] = data.getMessageOut();
  object[3] = data.getErrors();
  object[4] = data.getWsdlImplementationRef();
  
  return object;
}
origin: com.ebmwebsourcing.petalsbpm/petalsbpm-service

private Operation buildOperation(IOperationBean opBean){
  Operation op = newInstance(Operation.class);
  setDocumentationAndExtensions(op, opBean);
  op.setName(opBean.getName());
  op.setId(opBean.getId());
  
  if(opBean.getWsdlImplementationRef()!=null && !opBean.getWsdlImplementationRef().isEmpty()) {
    op.setImplementationRef(getQNameFromString(opBean.getWsdlImplementationRef()));
  }
  
  return op;
}

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

Popular methods of IOperationBean

  • getErrors
  • getId
  • getMessageIn
  • getMessageOut
  • getWsdlImplementationRef
  • setMessageIn
  • setMessageOut
  • setName

Popular in Java

  • Reading from database using SQL prepared statement
  • onRequestPermissionsResult (Fragment)
  • runOnUiThread (Activity)
  • requestLocationUpdates (LocationManager)
  • Color (java.awt)
    The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
  • GridBagLayout (java.awt)
    The GridBagLayout class is a flexible layout manager that aligns components vertically and horizonta
  • Dictionary (java.util)
    Note: Do not use this class since it is obsolete. Please use the Map interface for new implementatio
  • Annotation (javassist.bytecode.annotation)
    The annotation structure.An instance of this class is returned bygetAnnotations() in AnnotationsAttr
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
  • Best plugins for Eclipse
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