KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > celtix > ws > policy > PolicyConstants


1 package org.objectweb.celtix.ws.policy;
2
3 import javax.xml.namespace.QName JavaDoc;
4
5 /**
6  * Encapsulation of version-specific WS-Policy constants.
7  */

8 public interface PolicyConstants {
9     /**
10      * @return namespace defined by the WS-Policy schema
11      */

12     String JavaDoc getNamespaceURI();
13     
14     /**
15      * @return namespace defined by the WS Security Utility schema
16      */

17     String JavaDoc getWSUNamespaceURI();
18     
19     /**
20      * @return the QName of the Policy element
21      */

22     QName JavaDoc getPolicyQName();
23     
24     /**
25      * @return the QName of the PolicyReference element
26      */

27     QName JavaDoc getPolicyReferenceQName();
28     
29 }
30
Popular Tags