01: package org.andromda.cartridges.webservice;
02:
03: /**
04: * Stores global variables for the WebService cartridge metafacades.
05: *
06: * @author Chad Brandon
07: */
08: public class WebServiceGlobals {
09: /**
10: * The prefix for the XSD namespace.
11: */
12: public final static String XSD_NAMESPACE_PREFIX = "xsd:";
13:
14: /**
15: * Defines the property that stores the location of the schema type mappings URI.
16: */
17: public static final String SCHEMA_TYPE_MAPPINGS_URI = "schemaTypeMappingsUri";
18:
19: /**
20: * The prefix given to wrapped style WSDL array types.
21: */
22: public static final String ARRAY_NAME_PREFIX = "arrayNamePrefix";
23:
24: /**
25: * The namespace delimiter (seperates namespaces).
26: */
27: public static final char NAMESPACE_DELIMITER = '.';
28: }
|