View Javadoc

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