D:\CRM_Project\CRM_Metadata_Structure\NetBeamsICM_TestProject\ICM_DB_TestComponents\src\java\unstructured_data_idao\TokenValueDAO.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  * For every business there exists buzzword and jargon. We create this DAO to store the following:
12  *      •       Business Buzzwords
13  *      •       An index value for future tracking
14  *      •       Possible variable name for this buzzword to be used a field name of method name
15 
16  * This file can be automated with the addition or auditing of  parameters and buzzwords
17  */
18 public class TokenValueDAO {
19 
20 
21     private String  stringToken;
22     private int     tokenValue;
23     private String  variableNameString;
24 
25     public TokenValueDAO() {
26     }
27     
28     /**
29      * @return the tokenValue
30      */
31     public int getTokenValue() {
32         return tokenValue;
33     }
34 
35     /**
36      * @param tokenvalue the tokenValue to set
37      */
38     public void setTokenValue(int tokenValue) {
39         this.tokenValue = tokenValue;
40     }   
41 
42     /**
43      * @return the stringToken
44      */
45     public String getStringToken() {
46         return stringToken;
47     }
48 
49     /**
50      * @param stringToken the stringToken to set
51      */
52     public void setStringToken(String stringToken) {
53         this.stringToken = stringToken;
54     }
55     /**
56      * @return the variableNamestring
57      */
58     public String getVariableNameString() {
59         return variableNameString;
60     }
61 
62     /**
63      * @param variableNamestring the variableNamestring to set
64      */
65     public void setVariableNameString(String variableNamestring) {
66         this.variableNameString = variableNamestring;
67     }
68     
69     
70     /**
71      * toString
72      */
73     public String toString()    {
74                 return ("stringToken            " + getStringToken()
75                         + "tokenValue           " + getTokenValue()
76                         + "variableNameString   "  + getVariableNameString()
77                         );
78     }
79     
80 }
81