< prev index next >

src/java.xml.ws/share/classes/javax/xml/ws/WebServiceFeature.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2005, 2012, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 2005, 2015, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 32,42 **** * <p> * The JAX-WS specification will define some standard features and * JAX-WS implementors are free to define additional features if * necessary. Vendor specific features may not be portable so * caution should be used when using them. Each Feature definition ! * MUST define a <code>public static final String ID</code> * that can be used in the Feature annotation to refer * to the feature. This ID MUST be unique across all features * of all vendors. When defining a vendor specific feature ID, * use a vendor specific namespace in the ID string. * --- 32,42 ---- * <p> * The JAX-WS specification will define some standard features and * JAX-WS implementors are free to define additional features if * necessary. Vendor specific features may not be portable so * caution should be used when using them. Each Feature definition ! * MUST define a {@code public static final String ID} * that can be used in the Feature annotation to refer * to the feature. This ID MUST be unique across all features * of all vendors. When defining a vendor specific feature ID, * use a vendor specific namespace in the ID string. *
*** 69,81 **** protected WebServiceFeature(){} /** ! * Returns <code>true</code> if this feature is enabled. * ! * @return <code>true</code> if and only if the feature is enabled . */ public boolean isEnabled() { return enabled; } } --- 69,81 ---- protected WebServiceFeature(){} /** ! * Returns {@code true} if this feature is enabled. * ! * @return {@code true} if and only if the feature is enabled . */ public boolean isEnabled() { return enabled; } }
< prev index next >