src/share/jaxws_classes/javax/xml/bind/ValidationEvent.java

Print this page
rev 507 : 8047724: @since tag cleanup in jaxws
Reviewed-by:


  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package javax.xml.bind;
  27 
  28 /**
  29  * This event indicates that a problem was encountered while validating the
  30  * incoming XML data during an unmarshal operation, while performing
  31  * on-demand validation of the Java content tree, or while marshalling the
  32  * Java content tree back to XML data.
  33  *
  34  * @author <ul><li>Ryan Shoemaker, Sun Microsystems, Inc.</li><li>Kohsuke Kawaguchi, Sun Microsystems, Inc.</li><li>Joe Fialli, Sun Microsystems, Inc.</li></ul>
  35  * @see Validator
  36  * @see ValidationEventHandler
  37  * @since JAXB1.0
  38  */
  39 public interface ValidationEvent {
  40 
  41     /**
  42      * Conditions that are not errors or fatal errors as defined by the
  43      * XML 1.0 recommendation
  44      */
  45     public static final int WARNING     = 0;
  46 
  47     /**
  48      * Conditions that correspond to the definition of "error" in section
  49      * 1.2 of the W3C XML 1.0 Recommendation
  50      */
  51     public static final int ERROR       = 1;
  52 
  53     /**
  54      * Conditions that correspond to the definition of "fatal error" in section
  55      * 1.2 of the W3C XML 1.0 Recommendation
  56      */
  57     public static final int FATAL_ERROR = 2;




  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package javax.xml.bind;
  27 
  28 /**
  29  * This event indicates that a problem was encountered while validating the
  30  * incoming XML data during an unmarshal operation, while performing
  31  * on-demand validation of the Java content tree, or while marshalling the
  32  * Java content tree back to XML data.
  33  *
  34  * @author <ul><li>Ryan Shoemaker, Sun Microsystems, Inc.</li><li>Kohsuke Kawaguchi, Sun Microsystems, Inc.</li><li>Joe Fialli, Sun Microsystems, Inc.</li></ul>
  35  * @see Validator
  36  * @see ValidationEventHandler
  37  * @since 1.6, JAXB 1.0
  38  */
  39 public interface ValidationEvent {
  40 
  41     /**
  42      * Conditions that are not errors or fatal errors as defined by the
  43      * XML 1.0 recommendation
  44      */
  45     public static final int WARNING     = 0;
  46 
  47     /**
  48      * Conditions that correspond to the definition of "error" in section
  49      * 1.2 of the W3C XML 1.0 Recommendation
  50      */
  51     public static final int ERROR       = 1;
  52 
  53     /**
  54      * Conditions that correspond to the definition of "fatal error" in section
  55      * 1.2 of the W3C XML 1.0 Recommendation
  56      */
  57     public static final int FATAL_ERROR = 2;