KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > celtix > ws > rm > JAXWSRMConstants


1 package org.objectweb.celtix.ws.rm;
2
3 /**
4  * A container for WS-RM constants.
5  */

6 public final class JAXWSRMConstants {
7     
8     /**
9      * Used to cache outbound RM properties in context.
10      */

11     public static final String JavaDoc RM_PROPERTIES_OUTBOUND =
12         "org.objectweb.celtix.ws.rm.context.outbound";
13     
14     /**
15      * Used to cache inbound RM properties in context.
16      */

17     public static final String JavaDoc RM_PROPERTIES_INBOUND =
18         "org.objectweb.celtix.ws.rm.context.inbound";
19     
20     /**
21      * Prevents instantiation.
22      */

23     private JAXWSRMConstants() {
24     }
25 }
26
Popular Tags