| DetailEntry.java |
/*
* JBoss, the OpenSource WebOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package javax.xml.soap;
/** The content for a Detail object, giving details for a SOAPFault object. A
* DetailEntry object, which carries information about errors related to the
* SOAPBody object that contains it, is application-specific.
*
* @author Scott.Stark@jboss.org
* @version $Revision: 1.1 $
*/
public interface DetailEntry
extends SOAPElement
{
}
| DetailEntry.java |