D:\Sam\InterviewsMaterial\SiteWorx\SiteWorxTest\src\java\multithread_reader_services\MultithreadConstants.java
 1 /*
 2  * To change this template, choose Tools | Templates
 3  * and open the template in the editor.
 4  */
 5 package multithread_reader_services;
 6 
 7 /**
 8  *
 9  * @author sameldin
10  */
11 public class MultithreadConstants {
12     
13     public static final int SUCCESS             = 0;
14     public static final int FAILED              = -2;
15     public static final int ERROR               = -1;
16     
17     public static final int MAX_SIZE            = 10;
18     //======================
19     public static final String FILE_PATH        = "D:\\Java\\JavaTraining\\TempInputDataFiles\\";
20     //======================
21     public static final String FILE_A_NAME      = "A_InputInformation.data";    
22     public static final String FILE_B_NAME      = "B_InputInformation.data";    
23     public static final String FILE_C_NAME      = "C_InputInformation.data";    
24     public static final String FILE_D_NAME      = "D_InputInformation.data";    
25     public static final String FILE_E_NAME      = "E_InputInformation.data";    
26     public static final String FILE_F_NAME      = "F_InputInformation.data";    
27     public static final String FILE_G_NAME      = "G_InputInformation.data";    
28     public static final String FILE_H_NAME      = "H_InputInformation.data";    
29     public static final String FILE_I_NAME      = "I_InputInformation.data";    
30     public static final String FILE_J_NAME     = "J_InputInformation.data";    
31     
32 }
33