01: // Copyright (c) 2004-2005 Sun Microsystems Inc., All Rights Reserved.
02:
03: /*
04: * PatternRegistry.java
05: *
06: * SUN PROPRIETARY/CONFIDENTIAL.
07: * This software is the proprietary information of Sun Microsystems, Inc.
08: * Use is subject to license terms.
09: *
10: */
11: package com.sun.jbi.engine.sequencing;
12:
13: /**
14: * Simple, extensible pattern registry.
15: *
16: * @author Sun Microsystems, Inc.
17: */
18: public class PatternRegistry {
19: /**
20: * In Only MEP.
21: */
22: public static final String IN_ONLY = "http://www.w3.org/2004/08/wsdl/in-only";
23:
24: /**
25: * In Out MEP.
26: */
27: public static final String IN_OUT = "http://www.w3.org/2004/08/wsdl/in-out";
28:
29: /**
30: * In Optional Out MEP.
31: */
32: public static final String IN_OPTIONAL_OUT = "http://www.w3.org/2004/08/wsdl/in-opt-out";
33:
34: /**
35: * Robust In Only MEP.
36: */
37: public static final String ROBUST_IN_ONLY = "http://www.w3.org/2004/08/wsdl/robust-in-only";
38:
39: /**
40: * Out Only MEP.
41: */
42: public static final String OUT_ONLY = "http://www.w3.org/2004/08/wsdl/out-only";
43:
44: /**
45: * Out In MEP.
46: */
47: public static final String OUT_IN = "http://www.w3.org/2004/08/wsdl/out-in";
48:
49: /**
50: * Out Optional In MEP.
51: */
52: public static final String OUT_OPTIONAL_IN = "http://www.w3.org/2004/08/wsdl/out-opt-in";
53:
54: /**
55: * Robust Out Only MEP.
56: */
57: public static final String ROBUST_OUT_ONLY = "http://www.w3.org/2004/08/wsdl/robust-out-only";
58: }
|