
javax.wsdl.Output Maven / Gradle / Ivy
/*
* (c) Copyright IBM Corp 2001, 2006
*/
package javax.wsdl;
/**
* This interface represents an output message, and contains the name
* of the output and the message itself.
*
* @author Matthew J. Duftler
*/
public interface Output extends WSDLElement
{
/**
* Set the name of this output message.
*
* @param name the desired name
*/
void setName(String name);
/**
* Get the name of this output message.
*
* @return the output message name
*/
String getName();
void setMessage(Message message);
Message getMessage();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy