BindingEntry.getParameters
Code IndexAdd Codota to your IDE (free)

Best Java code snippets using org.apache.axis.wsdl.symbolTable.BindingEntry.getParameters (Showing top 20 results out of 315)

  • Common ways to obtain BindingEntry
private void myMethod () {
BindingEntry b =
  • Table.SymbolTable symbolTable;Binding binding;symbolTable.getBindingEntry(binding.getQName())
  • Vector vector;(BindingEntry) vector.get(index)
  • Binding binding;new BindingEntry(binding)
  • Smart code suggestions by Codota
}
origin: axis/axis

  /**
   * This method generates the interface signatures for the given operation.
   * 
   * @param pw        
   * @param operation 
   * @throws IOException 
   */
  protected void writeOperation(PrintWriter pw, Operation operation)
      throws IOException {

    writeComment(pw, operation.getDocumentationElement(), true);

    Parameters parms = bEntry.getParameters(operation);

    pw.println(parms.signature + ";");
  }    // writeOperation
}    // class JavaInterfaceWriter
origin: org.apache.axis/axis

  /**
   * This method generates the interface signatures for the given operation.
   * 
   * @param pw        
   * @param operation 
   * @throws IOException 
   */
  protected void writeOperation(PrintWriter pw, Operation operation)
      throws IOException {

    writeComment(pw, operation.getDocumentationElement(), true);

    Parameters parms = bEntry.getParameters(operation);

    pw.println(parms.signature + ";");
  }    // writeOperation
}    // class JavaInterfaceWriter
origin: org.apache.axis/com.springsource.org.apache.axis

  /**
   * This method generates the interface signatures for the given operation.
   * 
   * @param pw        
   * @param operation 
   * @throws IOException 
   */
  protected void writeOperation(PrintWriter pw, Operation operation)
      throws IOException {

    writeComment(pw, operation.getDocumentationElement(), true);

    Parameters parms = bEntry.getParameters(operation);

    pw.println(parms.signature + ";");
  }    // writeOperation
}    // class JavaInterfaceWriter
origin: axis/axis

/**
 * Are there any MIME parameters in the given binding's operation?
 *
 * @param bEntry
 * @param operation
 * @return
 */
public static boolean hasMIME(BindingEntry bEntry,
               BindingOperation operation) {
  Parameters parameters = bEntry.getParameters(operation.getOperation());
  if (parameters != null) {
    for (int idx = 0; idx < parameters.list.size(); ++idx) {
      Parameter p = (Parameter) parameters.list.get(idx);
      if (p.getMIMEInfo() != null) {
        return true;
      }
    }
  }
  return false;
}    // hasMIME
origin: org.apache.axis/com.springsource.org.apache.axis

/**
 * Are there any MIME parameters in the given binding's operation?
 *
 * @param bEntry
 * @param operation
 * @return
 */
public static boolean hasMIME(BindingEntry bEntry,
               BindingOperation operation) {
  Parameters parameters = bEntry.getParameters(operation.getOperation());
  if (parameters != null) {
    for (int idx = 0; idx < parameters.list.size(); ++idx) {
      Parameter p = (Parameter) parameters.list.get(idx);
      if (p.getMIMEInfo() != null) {
        return true;
      }
    }
  }
  return false;
}    // hasMIME
origin: org.apache.axis/axis

/**
 * Are there any MIME parameters in the given binding's operation?
 *
 * @param bEntry
 * @param operation
 * @return
 */
public static boolean hasMIME(BindingEntry bEntry,
               BindingOperation operation) {
  Parameters parameters = bEntry.getParameters(operation.getOperation());
  if (parameters != null) {
    for (int idx = 0; idx < parameters.list.size(); ++idx) {
      Parameter p = (Parameter) parameters.list.get(idx);
      if (p.getMIMEInfo() != null) {
        return true;
      }
    }
  }
  return false;
}    // hasMIME
origin: axis/axis

Parameters params = bEntry.getParameters(operation);
origin: org.apache.axis/axis

Parameters params = bEntry.getParameters(operation);
origin: org.apache.axis/com.springsource.org.apache.axis

Parameters params = bEntry.getParameters(operation);
origin: axis/axis

/**
 * Write the body of the binding's stub file.
 * 
 * @param pw 
 * @throws IOException 
 */
protected void writeFileBody(PrintWriter pw) throws IOException {
  List operations = binding.getBindingOperations();
  for (int i = 0; i < operations.size(); ++i) {
    BindingOperation operation = (BindingOperation) operations.get(i);
    Operation ptOperation = operation.getOperation();
    OperationType type = ptOperation.getStyle();
    Parameters parameters =
        bEntry.getParameters(operation.getOperation());
    // These operation types are not supported.  The signature
    // will be a string stating that fact.
    if ((OperationType.NOTIFICATION.equals(type))
        || (OperationType.SOLICIT_RESPONSE.equals(type))) {
      pw.println(parameters.signature);
      pw.println();
    } else {
      writeOperation(pw, parameters);
    }
  }
}    // writeFileBody
origin: org.apache.axis/axis

/**
 * Write the body of the binding's stub file.
 * 
 * @param pw 
 * @throws IOException 
 */
protected void writeFileBody(PrintWriter pw) throws IOException {
  List operations = binding.getBindingOperations();
  for (int i = 0; i < operations.size(); ++i) {
    BindingOperation operation = (BindingOperation) operations.get(i);
    Operation ptOperation = operation.getOperation();
    OperationType type = ptOperation.getStyle();
    Parameters parameters =
        bEntry.getParameters(operation.getOperation());
    // These operation types are not supported.  The signature
    // will be a string stating that fact.
    if ((OperationType.NOTIFICATION.equals(type))
        || (OperationType.SOLICIT_RESPONSE.equals(type))) {
      pw.println(parameters.signature);
      pw.println();
    } else {
      writeOperation(pw, parameters);
    }
  }
}    // writeFileBody
origin: org.apache.axis/com.springsource.org.apache.axis

/**
 * Write the body of the binding's stub file.
 * 
 * @param pw 
 * @throws IOException 
 */
protected void writeFileBody(PrintWriter pw) throws IOException {
  List operations = binding.getBindingOperations();
  for (int i = 0; i < operations.size(); ++i) {
    BindingOperation operation = (BindingOperation) operations.get(i);
    Operation ptOperation = operation.getOperation();
    OperationType type = ptOperation.getStyle();
    Parameters parameters =
        bEntry.getParameters(operation.getOperation());
    // These operation types are not supported.  The signature
    // will be a string stating that fact.
    if ((OperationType.NOTIFICATION.equals(type))
        || (OperationType.SOLICIT_RESPONSE.equals(type))) {
      pw.println(parameters.signature);
      pw.println();
    } else {
      writeOperation(pw, parameters);
    }
  }
}    // writeFileBody
origin: axis/axis

bEntry.getParameters().values().iterator();
origin: org.apache.axis/com.springsource.org.apache.axis

BindingEntry bEntry =
    symbolTable.getBindingEntry(binding.getQName());
Iterator i = bEntry.getParameters().keySet().iterator();
origin: axis/axis

BindingEntry bEntry =
    symbolTable.getBindingEntry(binding.getQName());
Iterator i = bEntry.getParameters().keySet().iterator();
origin: org.apache.axis/axis

BindingEntry bEntry =
    symbolTable.getBindingEntry(binding.getQName());
Iterator i = bEntry.getParameters().keySet().iterator();
origin: org.apache.axis/axis

bEntry.getParameters().values().iterator();
origin: org.apache.axis/com.springsource.org.apache.axis

SymbolTable symbolTable = wsdlParser.getSymbolTable();
BindingEntry bEntry = symbolTable.getBindingEntry(binding.getQName());
if(bEntry.getParameters().size() !=  proxyInterface.getMethods().length) {
  throw new ServiceException(Messages.getMessage("incompatibleSEI00", "" + proxyInterface.getName()));
origin: axis/axis

SymbolTable symbolTable = wsdlParser.getSymbolTable();
BindingEntry bEntry = symbolTable.getBindingEntry(binding.getQName());
if(bEntry.getParameters().size() !=  proxyInterface.getMethods().length) {
  throw new ServiceException(Messages.getMessage("incompatibleSEI00", "" + proxyInterface.getName()));
origin: org.apache.axis/axis

SymbolTable symbolTable = wsdlParser.getSymbolTable();
BindingEntry bEntry = symbolTable.getBindingEntry(binding.getQName());
if(bEntry.getParameters().size() !=  proxyInterface.getMethods().length) {
  throw new ServiceException(Messages.getMessage("incompatibleSEI00", "" + proxyInterface.getName()));
org.apache.axis.wsdl.symbolTableBindingEntrygetParameters

Javadoc

Get all of the parameters for all operations.

Popular methods of BindingEntry

  • getBindingType
    Get this entry's binding type. One of BindingEntry.TYPE_SOAP, BindingEntry.TYPE_HTTP_GET, BindingEnt
  • <init>
    Construct a BindingEntry from a WSDL4J Binding object and the additional binding info: binding type,
  • getBinding
    Get this entry's WSDL4J Binding object.
  • getBindingStyle
    Get this entry's binding style.
  • getDynamicVar
  • getFaults
    Return the map of BindingOperations to ArraList of FaultBodyType
  • hasLiteral
    Do any of the message stanzas contain a soap:body which uses literal?
  • getInputBodyType
    Get the input body type for the given operation.
  • getMIMEInfo
    Get the mime mapping for the given parameter name. If there is none, this returns null.
  • getMIMETypes
    Get the MIME types map.
  • getName
  • getOperations
    Get a Set of comprised Operation objects.
  • getName,
  • getOperations,
  • getOutputBodyType,
  • headerPart,
  • isInHeaderPart,
  • isOperationDIME,
  • isOutHeaderPart,
  • isReferenced,
  • setBindingStyle

Popular in Java

  • Creating JSON documents from java classes using gson
  • getContentResolver (Context)
  • notifyDataSetChanged (ArrayAdapter)
  • compareTo (BigDecimal)
    Compares this BigDecimal with the specified BigDecimal. Two BigDecimal objects that are equal in val
  • PrintStream (java.io)
    Fake signature of an existing Java class.
  • HttpURLConnection (java.net)
    An URLConnection for HTTP (RFC 2616 [http://tools.ietf.org/html/rfc2616]) used to send and receive d
  • SocketTimeoutException (java.net)
    This exception is thrown when a timeout expired on a socket read or accept operation.
  • URI (java.net)
    A Uniform Resource Identifier that identifies an abstract or physical resource, as specified by RFC
  • Path (java.nio.file)
  • Pattern (java.util.regex)
    Patterns are compiled regular expressions. In many cases, convenience methods such as String#matches

For IntelliJ IDEA,
Android Studio or Eclipse

  • Search for JavaScript code betaCodota IntelliJ IDEA pluginCodota Android Studio pluginCode IndexSign in
  • EnterpriseFAQAboutBlogContact Us
  • Plugin user guideTerms of usePrivacy policyCodeboxFind Usages
Add Codota to your IDE (free)