javax.wsdl.extensions.soap.SOAPFault Maven / Gradle / Ivy
/*
* (c) Copyright IBM Corp 2001, 2005
*/
package javax.wsdl.extensions.soap;
import java.util.*;
import javax.wsdl.extensions.*;
/**
* @author Matthew J. Duftler ([email protected])
*/
public interface SOAPFault extends ExtensibilityElement, java.io.Serializable
{
/**
* Set the name for this SOAP fault.
*
* @param name the desired name
*/
public void setName(String name);
/**
* Get the name for this SOAP fault.
*/
public String getName();
/**
* Set the use for this SOAP fault.
*
* @param use the desired use
*/
public void setUse(String use);
/**
* Get the use for this SOAP fault.
*/
public String getUse();
/**
* Set the encodingStyles for this SOAP fault.
*
* @param encodingStyles the desired encodingStyles
*/
public void setEncodingStyles(List encodingStyles);
/**
* Get the encodingStyles for this SOAP fault.
*/
public List getEncodingStyles();
/**
* Set the namespace URI for this SOAP fault.
*
* @param namespaceURI the desired namespace URI
*/
public void setNamespaceURI(String namespaceURI);
/**
* Get the namespace URI for this SOAP fault.
*/
public String getNamespaceURI();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy