Coverage Report - com.ctrip.framework.apollo.portal.constant.PermissionType
 
Classes in this File Line Coverage Branch Coverage Complexity
PermissionType
N/A
N/A
0
 
 1  
 package com.ctrip.framework.apollo.portal.constant;
 2  
 
 3  
 public interface PermissionType {
 4  
 
 5  
   /** APP level permission */
 6  
 
 7  
   String CREATE_NAMESPACE = "CreateNamespace";
 8  
 
 9  
   String CREATE_CLUSTER = "CreateCluster";
 10  
 
 11  
   /**
 12  
    * 分配用户权限的权限
 13  
    */
 14  
   String ASSIGN_ROLE = "AssignRole";
 15  
 
 16  
   /** namespace level permission*/
 17  
 
 18  
   String MODIFY_NAMESPACE = "ModifyNamespace";
 19  
 
 20  
   String RELEASE_NAMESPACE = "ReleaseNamespace";
 21  
 
 22  
 
 23  
 }