1 46 47 package org.mr.kernel.security; 48 49 59 public interface SecurityActionTypes { 60 public static final int ACTION_CREATE_CONSUMER_FOR_QUEUE = 1; 61 public static final int ACTION_CREATE_PRODUCER_FOR_QUEUE = 2; 62 public static final int ACTION_CREATE_CONSUMER_FOR_TOPIC = 3; 63 public static final int ACTION_CREATE_PRODUCER_FOR_TOPIC = 4; 64 public static final int ACTION_CREATE_BROSWER_FOR_QUEUE = 5; 65 public static final int ACTION_SUBSCRIBE_DURABLE_ON_TOPIC = 6; 66 67 public static final int ACTION_CREATE_GROUP = 101; 69 public static final int ACTION_CREATE_USER_IN_GROUP = 102; 70 public static final int ACTION_RENAME_GROUP = 103; 71 public static final int ACTION_RENAME_USER = 104; 72 public static final int ACTION_SET_GROUP_FOR_USER = 105; 73 public static final int ACTION_SET_PASSWORD_FOR_USER = 106; 74 75 public static final int ACTION_CREATE_PERMISSIONS_FOR_GROUP = 111; 76 public static final int ACTION_READ_PERMISSIONS_FOR_GROUP = 112; 77 public static final int ACTION_DELETE_PERMISSIONS_FOR_GROUP = 113; 78 79 public static final int ACTION_CREATE_PERMISSIONS_FOR_USER = 114; 80 public static final int ACTION_READ_PERMISSIONS_FOR_USER = 115; 81 public static final int ACTION_DELETE_PERMISSIONS_FOR_USER = 116; 82 83 public static final int ACTION_DELETE_USER = 117; 84 public static final int ACTION_DELETE_GROUP = 118; 85 86 public static final int ACTION_CREATE_WHITE_LIST_ENTRY = 119; 87 public static final int ACTION_DELETE_WHITE_LIST_ENTRY = 120; 88 89 public static final int ACTION_LIST_USERS = 121; 90 public static final int ACTION_LIST_GROUPS = 122; 91 public static final int ACTION_LIST_WHITE_LIST = 123; 92 } 93 | Popular Tags |