View Javadoc

1   package pl.psnc.dl.ege.webapp.request;
2   
3   /**
4    * <p>Enum class used mainly by RequestResolvers.</p>
5    * Each value identifies operation that can be performed by web service. 
6    * 
7    * @author mariuszs
8    */
9   public enum OperationId {
10  	
11  	/**
12  	 * Express the operation of printing available input types for conversion 
13  	 */
14  	PRINT_INPUT_TYPES,
15  	
16  	/**
17  	 * Marks operation of printing conversions paths
18  	 */
19  	PRINT_CONVERSIONS_PATHS,
20  	
21  	/**
22  	 * Identify conversion operation 
23  	 */
24  	PERFORM_CONVERSION,
25  	
26  	/**
27  	 * Express operation of data types available for validation
28  	 */
29  	PRINT_VALIDATIONS,
30  	
31  	/**
32  	 * Identify validation operation
33  	 */
34  	PERFORM_VALIDATION
35  	
36  }