javax.wsdl.Input Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.cxf Show documentation
Show all versions of org.apache.cxf Show documentation
Apache CXF is an open-source services framework that aids in
the development of services using front-end programming APIs, like JAX-WS
and JAX-RS.
/*
* (c) Copyright IBM Corp 2001, 2006
*/
package javax.wsdl;
/**
* This interface represents an input message, and contains the name
* of the input and the message itself.
*
* @author Matthew J. Duftler
*/
public interface Input extends WSDLElement
{
/**
* Set the name of this input message.
*
* @param name the desired name
*/
public void setName(String name);
/**
* Get the name of this input message.
*
* @return the input message name
*/
public String getName();
public void setMessage(Message message);
public Message getMessage();
}