1   package com.trendmicro.grid.acl.l0;
2   
3   import com.trendmicro.grid.acl.ServiceConstants;
4   
5   /**
6    * Defines constant expression for this API level.
7    *
8    * @author Juergen_Kellerer, 2010-04-23
9    * @version 1.0
10   */
11  public interface Level0Constants extends ServiceConstants {
12  
13  	String NAMESPACE = BASE_NAMESPACE + "/level-0";
14  
15  	Class<?>[] ALL_ENDPOINT_INTERFACES = {
16  		CacheControlService.class,
17  		FileRequestService.class,
18  		FileService.class,
19  		PackageService.class,
20  		ProcessingService.class,
21  		PublicAuthenticationService.class,
22  		PublicCategoryService.class,
23  		PublicFileService.class,
24  		PublicPackageService.class,
25  		PublicReportService.class,
26  		SourceService.class,
27  	};
28  }