D:\CRM_Project\CRM_Metadata_Structure\NetBeamsICM_TestProject\ICM_DB_TestComponents\src\java\unstructured_data_idao\SOAP_XML_Constants.java
 1 /*
 2  * To change this license header, choose License Headers in Project Properties.
 3  * To change this template file, choose Tools | Templates
 4  * and open the template in the editor.
 5  */
 6 package unstructured_data_idao;
 7 
 8 /**
 9  *
10  * @author sameldin
11  * 
12  * To help with building XML tags, we are creating constants for tag names and 
13  * other parameters.
14  */
15 public class SOAP_XML_Constants {
16  
17     //======================================================================
18     public static final String      CLASS_INFORMATION_STRING                = "class_information_";    
19     public static final int         CLASS_INFORMATION_XML_PROCESS_INDEX     = 100;     
20     public static final String      DAO_OBJECT_STRING                       = "dao_object_";    
21     public static final int         DAO_OBJECT_XML_PROCESS_INDEX            = 110;    
22     //======================================================================
23     public static final String      PACKAGE_NAME_STRING                     = "package_name_";    
24     public static final int         PACKAGE_NAME_XML_PROCESS_INDEX          = 200;     
25     public static final String      CLASS_PATH_STRING                       = "path_"; 
26     public static final int         CLASS_PATH_XML_PROCESS_INDEX            = 210;        
27     public static final String      CLASS_NAME_STRING                       = "class_name_";    
28     public static final int         CLASS_NAME_XML_PROCESS_INDEX            = 220;    
29     public static final String      DAO_FIELDS_START                        = "dao_fields_";    
30     public static final int         DAO_FIELDS_XML_PROCESS_INDEX            = 230;       
31     //======================================================================
32     public static final String      FIELD_ID_STRING                         = "field_id_";
33     public static final int         FIELD_ID_XML_PROCESS_INDEX              = 300;        
34     public static final String      FIELD_NAME_STRING                       = "field_name_";
35     public static final int         FIELD_NAME_XML_PROCESS_INDEX            = 310;  
36     public static final String      FIELD_TYPE_STRING                       = "field_type_";
37     public static final int         FIELD_TYPE_XML_PROCESS_INDEX            = 320;    
38     public static final String      FIELD_VALUE_STRING                      = "field_value_";
39     public static final int         FIELD_VALUE_XML_PROCESS_INDEX           = 330;  
40     //======================================================================
41     public static final String      ARRAY_LIST_STRING                       = "array_list";    
42     public static final int         ARRAY_LIST_XML_PROCESS_INDEX            = 1200;    
43     
44 }
45