jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/model/CheckedException.java
changeset 27837 86d4f46e622a
parent 25871 b80b84e87032
equal deleted inserted replaced
27581:9fffb959eb41 27837:86d4f46e622a
     1 /*
     1 /*
     2  * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    24  */
    24  */
    25 
    25 
    26 package com.sun.xml.internal.ws.api.model;
    26 package com.sun.xml.internal.ws.api.model;
    27 
    27 
    28 import com.sun.xml.internal.bind.api.Bridge;
    28 import com.sun.xml.internal.bind.api.Bridge;
       
    29 import com.sun.xml.internal.ws.spi.db.TypeInfo;
    29 
    30 
    30 import javax.xml.ws.WebFault;
    31 import javax.xml.ws.WebFault;
    31 import javax.xml.namespace.QName;
       
    32 import java.rmi.RemoteException;
       
    33 
    32 
    34 /**
    33 /**
    35  * This class provides abstractio to the  the exception class
    34  * This class provides abstractio to the  the exception class
    36  * corresponding to the wsdl:fault, such as class MUST have
    35  * corresponding to the wsdl:fault, such as class MUST have
    37  * {@link WebFault} annotation defined on it.
    36  * {@link WebFault} annotation defined on it.
    96     /**
    95     /**
    97      * Gives the wsdl:portType/wsdl:operation/wsdl:fault@message value - that is the wsdl:message
    96      * Gives the wsdl:portType/wsdl:operation/wsdl:fault@message value - that is the wsdl:message
    98      * referenced by wsdl:fault
    97      * referenced by wsdl:fault
    99      */
    98      */
   100     String getMessageName();
    99     String getMessageName();
       
   100 
       
   101     /**
       
   102      * Gives the {@link com.sun.xml.internal.ws.spi.db.TypeInfo} of the detail
       
   103      */
       
   104     TypeInfo getDetailType();
   101 }
   105 }