com.ibm.wsdl.BindingFaultImpl Maven / Gradle / Ivy
/*
* (c) Copyright IBM Corp 2001, 2006
*/
package com.ibm.wsdl;
import java.util.*;
import javax.wsdl.*;
/**
* This class represents a fault binding. That is, it contains
* the information that would be specified in an fault element
* contained within an operation element contained within a
* binding element.
*
* @author Matthew J. Duftler
*/
public class BindingFaultImpl extends AbstractWSDLElement implements BindingFault
{
protected String name = null;
protected List nativeAttributeNames =
Arrays.asList(Constants.BINDING_FAULT_ATTR_NAMES);
public static final long serialVersionUID = 1;
/**
* Set the name of this fault binding.
*
* @param name the desired name
*/
public void setName(String name)
{
this.name = name;
}
/**
* Get the name of this fault binding.
*
* @return the fault binding name
*/
public String getName()
{
return name;
}
public String toString()
{
StringBuffer strBuf = new StringBuffer();
strBuf.append("BindingFault: name=");
strBuf.append(name);
String superString = super.toString();
if(!superString.equals(""))
{
strBuf.append("\n");
strBuf.append(superString);
}
return strBuf.toString();
}
/**
* Get the list of local attribute names defined for this element in
* the WSDL specification.
*
* @return a List of Strings, one for each local attribute name
*/
public List getNativeAttributeNames()
{
return nativeAttributeNames;
}
}