Tabnine Logo
Provides.getRetrypolicy
Code IndexAdd Tabnine to your IDE (free)

How to use
getRetrypolicy
method
in
org.ow2.petals.component.framework.jbidescriptor.generated.Provides

Best Java code snippets using org.ow2.petals.component.framework.jbidescriptor.generated.Provides.getRetrypolicy (Showing top 3 results out of 315)

origin: org.ow2.petals/petals-bc-sftp

@Override
protected void doDeploy(final ServiceUnitDataHandler suDH) throws PEtALSCDKException {
  final Provides provides = suDH.getDescriptor().getServices().getProvides().get(0);
  final SuConfigurationParameters extensions = suDH.getConfigurationExtensions(provides);
  SFTPConnectionInfo connectionConfiguration;
  try {
    connectionConfiguration = SFTPConnectionInfoBuilder.buildSFTPConnectionInfo(extensions,
        provides.getRetrypolicy());
  } catch (ConfigurationException e) {
    throw new PEtALSCDKException(e);
  }
  final WrappedSftpClientFactory factory = new WrappedSftpClientFactory(
      connectionConfiguration, this.logger);
  final GenericObjectPool<WrappedSftpClient> pool = new GenericObjectPool<>(factory,
      this.configurePool(connectionConfiguration));
  ((SFTPComponent) getComponent()).getMapOfPool().put(provides, pool);
}
origin: org.ow2.petals/petals-bc-ftp

@Override
protected void doDeploy(final ServiceUnitDataHandler suDH) throws PEtALSCDKException {
  final Provides provides = suDH.getDescriptor().getServices().getProvides().get(0);
  final SuConfigurationParameters extensions = suDH.getConfigurationExtensions(provides);
  FTPConnectionInfo connectionConfiguration;
  try {
    connectionConfiguration = FTPConnectionInfoBuilder.buildFTPConnectionInfo(extensions,
        provides.getRetrypolicy());
  } catch (MissingElementException e) {
    throw new PEtALSCDKException(e);
  }
  final WrappedFTPClientFactory factory = new WrappedFTPClientFactory(
      connectionConfiguration, this.logger);
  final GenericObjectPool<WrappedFTPClient> pool = new GenericObjectPool<WrappedFTPClient>(factory,
      this.configurePool(connectionConfiguration));
  ((FTPComponent) getComponent()).getMapOfPool().put(provides, pool);
}
origin: org.ow2.petals/petals-cdk-jbidescriptor

theRetrypolicy = this.getRetrypolicy();
strategy.appendField(locator, this, "retrypolicy", buffer, theRetrypolicy, (this.retrypolicy!= null));
org.ow2.petals.component.framework.jbidescriptor.generatedProvidesgetRetrypolicy

Javadoc

Obtient la valeur de la propriété retrypolicy.

Popular methods of Provides

  • getEndpointName
    Obtient la valeur de la propriété endpointName.
  • getServiceName
    Obtient la valeur de la propriété serviceName.
  • getInterfaceName
    Obtient la valeur de la propriété interfaceName.
  • getAny
    Gets the value of the any property. This accessor method returns a reference to the live list, not a
  • getWsdl
    NO HCI
  • <init>
  • append
  • appendFields
  • getExchangeProperties
    NO HCI
  • getMessageProperties
    NO HCI
  • getSuInterceptors
    NO HCI
  • getTimeout
    Obtient la valeur de la propriété timeout.
  • getSuInterceptors,
  • getTimeout,
  • getValidateWsdl,
  • isForwardAttachments,
  • isForwardMessageProperties,
  • isForwardSecuritySubject

Popular in Java

  • Parsing JSON documents to java classes using gson
  • compareTo (BigDecimal)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • getResourceAsStream (ClassLoader)
  • BufferedReader (java.io)
    Wraps an existing Reader and buffers the input. Expensive interaction with the underlying reader is
  • Format (java.text)
    The base class for all formats. This is an abstract base class which specifies the protocol for clas
  • BitSet (java.util)
    The BitSet class implements abit array [http://en.wikipedia.org/wiki/Bit_array]. Each element is eit
  • JOptionPane (javax.swing)
  • Get (org.apache.hadoop.hbase.client)
    Used to perform Get operations on a single row. To get everything for a row, instantiate a Get objec
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
  • Top Vim 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