Tabnine Logo
AxisDescription.addParameter
Code IndexAdd Tabnine to your IDE (free)

How to use
addParameter
method
in
org.apache.axis2.description.AxisDescription

Best Java code snippets using org.apache.axis2.description.AxisDescription.addParameter (Showing top 20 results out of 315)

origin: org.wso2.mercury/mercury-core

  public void setEnforceRM(boolean enforceRM) throws AxisFault {
    this.axisDescription.addParameter(MercuryConstants.ENFORCE_RM, String.valueOf(enforceRM));
  }
}
origin: org.wso2.mercury/mercury-core

public void setRMSSequenceRetransmitTime(long retransmitTime) throws AxisFault {
  this.axisDescription.addParameter(MercuryConstants.RMS_SEQUENCE_RETRANSMIT_TIME, String.valueOf(retransmitTime));
}
origin: org.wso2.mercury/mercury-core

public void setRMSSequenceWorkerSleepTime(long sleepTime) throws AxisFault {
  this.axisDescription.addParameter(MercuryConstants.RMS_SEQUENCE_WORKER_SLEEP_TIME, String.valueOf(sleepTime));
}
origin: org.wso2.mercury/mercury-core

public void setRMDSequenceTimeout(long timeout) throws AxisFault {
  this.axisDescription.addParameter(MercuryConstants.RMD_SEQUENCE_TIMEOUT, String.valueOf(timeout));
}
origin: org.wso2.mercury/mercury-core

public void setInvokerSleepTime(long sleepTime) throws AxisFault {
  this.axisDescription.addParameter(MercuryConstants.INVOKER_WORKER_SLEEP_TIME, String.valueOf(sleepTime));
}
origin: org.wso2.mercury/mercury-core

public void setRMSMaximumRetransmitCount(long count) throws AxisFault {
  this.axisDescription.addParameter(MercuryConstants.RMS_MAXIMUM_RETRANSMIT_COUNT, String.valueOf(count));
}
origin: org.wso2.mercury/mercury-core

public void setRMDSequenceRetransmitTime(long retransmitTime) throws AxisFault {
  this.axisDescription.addParameter(MercuryConstants.RMD_SEQUENCE_RETRANSMIT_TIME, String.valueOf(retransmitTime));
}
origin: org.wso2.mercury/mercury-core

public void setInvokerTimeout(long timeout) throws AxisFault {
  this.axisDescription.addParameter(MercuryConstants.INVOKER_TIMEOUT, String.valueOf(timeout));
}
origin: org.wso2.mercury/mercury-core

public void setRMSSequenceTimeout(long timeout) throws AxisFault {
  this.axisDescription.addParameter(MercuryConstants.RMS_SEQUENCE_TIMEOUT, String.valueOf(timeout));
}
origin: org.wso2.mercury/mercury-core

public void setRMDSequenceWorkerSleepTime(long sleepTime) throws AxisFault {
  this.axisDescription.addParameter(MercuryConstants.RMD_SEQUENCE_WORKER_SLEEP_TIME, String.valueOf(sleepTime));
}
origin: apache/axis2-java

public void addParameter(String name, Object value) throws AxisFault {
  addParameter(new Parameter(name, value));
}
origin: org.apache.axis2/axis2-kernel

public void addParameter(String name, Object value) throws AxisFault {
  addParameter(new Parameter(name, value));
}
origin: org.apache.axis2/axis2-kernel

  axisDescription.addParameter(param);
} catch (AxisFault af) {
origin: apache/axis2-java

  axisDescription.addParameter(param);
} catch (AxisFault af) {
origin: org.apache.sandesha2/sandesha2-core

parameter.setName(Sandesha2Constants.SANDESHA_PROPERTY_BEAN);
parameter.setValue(axisDescPropertyBean);
axisDescription.addParameter(parameter);
    op.getParent().addParameter(p);
origin: wso2/wso2-synapse

anonymousService.getParent().addParameter(SynapseConstants.HIDDEN_SERVICE_PARAM, "true");
ServiceGroupContext serviceGroupContext =
    new ServiceGroupContext(configurationContext,
origin: org.apache.synapse/synapse-core

    configurationContext.getAxisConfiguration(), endpointDefinition.isAddressingOn(),
    endpointDefinition.isSecurityOn(), false);
anonymousService.getParent().addParameter(SynapseConstants.HIDDEN_SERVICE_PARAM, "true");
ServiceGroupContext serviceGroupContext = new ServiceGroupContext(configurationContext, (AxisServiceGroup) anonymousService.getParent());
ServiceContext serviceCtx = serviceGroupContext.getServiceContext(anonymousService);
origin: org.apache.synapse/synapse-core

anonymousService.getParent().addParameter(SynapseConstants.HIDDEN_SERVICE_PARAM, "true");
ServiceGroupContext sgc = new ServiceGroupContext(
        axisCfgCtx, (AxisServiceGroup) anonymousService.getParent());
origin: wso2/wso2-synapse

anonymousService.getParent().addParameter(SynapseConstants.HIDDEN_SERVICE_PARAM, "true");
ServiceGroupContext serviceGroupContext =
    new ServiceGroupContext(configurationContext,
origin: org.wso2.carbon.business-process/org.wso2.carbon.bpel

public static OperationClient getOperationClient(BPELMessageContext partnerMessageContext,
                         ConfigurationContext clientConfigCtx)
    throws AxisFault {
  AxisService anonymousService =
      AnonymousServiceFactory.getAnonymousService(partnerMessageContext.getService(),
          partnerMessageContext.getPort(),
          clientConfigCtx.getAxisConfiguration(), partnerMessageContext.getCaller());
  anonymousService.engageModule(clientConfigCtx.getAxisConfiguration().getModule("UEPModule"));
  anonymousService.getParent().addParameter(
      BPELConstants.HIDDEN_SERVICE_PARAM, "true");
  ServiceGroupContext sgc = new ServiceGroupContext(
      clientConfigCtx, (AxisServiceGroup) anonymousService.getParent());
  ServiceContext serviceCtx = sgc.getServiceContext(anonymousService);
  // get a reference to the DYNAMIC operation of the Anonymous Axis2 service
  AxisOperation axisAnonymousOperation = anonymousService.getOperation(
      partnerMessageContext.isTwoWay() ? ServiceClient.ANON_OUT_IN_OP :
          ServiceClient.ANON_OUT_ONLY_OP);
  Options clientOptions = cloneOptions(partnerMessageContext.getInMessageContext().getOptions());
  clientOptions.setExceptionToBeThrownOnSOAPFault(false);
  /* This value doesn't overrideend point config. */
  clientOptions.setTimeOutInMilliSeconds(60000);
  return axisAnonymousOperation.createClient(serviceCtx, clientOptions);
}
org.apache.axis2.descriptionAxisDescriptionaddParameter

Popular methods of AxisDescription

  • getParent
  • getParameter
    If the parameter is found in the current description then the Parameter will be writable else it wil
  • isEngaged
  • applyPolicy
    This method sets the policy as the default of this AxisDescription instance. Further more this metho
  • getChildren
  • getPolicyInclude
  • getPolicySubject
  • canSupportAssertion
  • engageModule
    Engage a Module at this level, keeping track of which level the engage was originally called from. T
  • engageModulesForPolicy
  • engageModulesToAxisDescription
  • getApplicablePolicy
  • engageModulesToAxisDescription,
  • getApplicablePolicy,
  • getAxisConfiguration,
  • getDocumentationNode,
  • getKey,
  • isParameterLocked,
  • onDisengage,
  • onEngage,
  • setDocumentation

Popular in Java

  • Parsing JSON documents to java classes using gson
  • scheduleAtFixedRate (Timer)
  • setRequestProperty (URLConnection)
  • getSystemService (Context)
  • BigInteger (java.math)
    An immutable arbitrary-precision signed integer.FAST CRYPTOGRAPHY This implementation is efficient f
  • NumberFormat (java.text)
    The abstract base class for all number formats. This class provides the interface for formatting and
  • NoSuchElementException (java.util)
    Thrown when trying to retrieve an element past the end of an Enumeration or Iterator.
  • Vector (java.util)
    Vector is an implementation of List, backed by an array and synchronized. All optional operations in
  • Semaphore (java.util.concurrent)
    A counting semaphore. Conceptually, a semaphore maintains a set of permits. Each #acquire blocks if
  • Table (org.hibernate.mapping)
    A relational table
  • 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