01: package org.objectweb.celtix.ws.rm;
02:
03: /**
04: * A container for WS-RM constants.
05: */
06: public final class JAXWSRMConstants {
07:
08: /**
09: * Used to cache outbound RM properties in context.
10: */
11: public static final String RM_PROPERTIES_OUTBOUND = "org.objectweb.celtix.ws.rm.context.outbound";
12:
13: /**
14: * Used to cache inbound RM properties in context.
15: */
16: public static final String RM_PROPERTIES_INBOUND = "org.objectweb.celtix.ws.rm.context.inbound";
17:
18: /**
19: * Prevents instantiation.
20: */
21: private JAXWSRMConstants() {
22: }
23: }
|