All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javax.wsdl.BindingInput Maven / Gradle / Ivy

There is a newer version: 7.4.3.112-ga112
Show newest version
/*
 * (c) Copyright IBM Corp 2001, 2006 
 */

package javax.wsdl;

/**
 * This interface represents an input binding. That is, it contains
 * the information that would be specified in an input element
 * contained within an operation element contained within a
 * binding element.
 *
 * @author Matthew J. Duftler
 */
public interface BindingInput extends WSDLElement
{
  /**
   * Set the name of this input binding.
   *
   * @param name the desired name
   */
  public void setName(String name);

  /**
   * Get the name of this input binding.
   *
   * @return the input binding name
   */
  public String getName();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy