Your browser does not support JavaScript and this site utilizes JavaScript to build content and provide links to additional information. You should either enable JavaScript in your browser settings or use a browser that supports JavaScript in order to take full advantage of this site.
1 19 20 package com.sslexplorer.core; 21 22 29 public interface CoreEventConstants { 30 31 35 public final static int NEW_HTTP_SESSION = 0; 36 37 40 public static final int SERVER_STARTED = 1; 41 42 45 public static final int SERVER_STOPPING = 2; 46 47 50 public static final int SERVER_STOPPED = 3; 51 52 55 public final static int LOGON = 300; 56 57 60 public final static int EMBEDDED_CLIENT_LOGON = 301; 61 62 65 public final static int LOGOFF = 302; 66 67 70 public static final int EMBEDDED_CLIENT_LOGOFF = 303; 71 72 75 public static final int ACCOUNT_LOCKED = 304; 76 77 80 public final static int PROPERTY_CHANGED = 305; 81 82 85 public final static int KEYSTORE_CREATED = 400; 86 87 90 public final static int KEYSTORE_IMPORTED = 401; 91 92 95 public final static int KEYSTORE_DELETED = 402; 96 97 101 public final static int KEYSTORE_CERTIFICATE_CREATED = 403; 102 103 106 public final static int KEYSTORE_CERTIFICATE_CSR_GENERATED = 405; 107 108 111 public final static int KEYSTORE_CERTIFICATE_SIGNED_IMPORTED = 406; 112 113 116 public final static int KEYSTORE_CERTIFICATE_DELETED = 407; 117 118 121 public final static int KEYSTORE_PKCS12_KEY_KEY_IMPORTED = 409; 122 123 126 public final static int KEYSTORE_TRUSTED_CERTIFICATE_IMPORTED = 410; 127 128 131 public final static int KEYSTORE_SERVER_AUTHENTICATION_CERTIFICATE_IMPORTED = 411; 132 133 136 public final static int KEYSTORE_ROOT_CERTIFICATE_IMPORTED = 412; 137 138 141 public final static int AGENT_REGISTER = 501; 142 143 146 public final static int AGENT_DEREGISTER = 502; 147 148 151 public final static int AGENT_LAUNCHED = 503; 152 153 156 public final static int AGENT_STOPPED = 504; 157 158 161 public final static int USER_CREATED = 100; 162 163 166 public final static int USER_REMOVED = 101; 167 168 171 public final static int USER_EDITED = 102; 172 173 176 public final static int GROUP_CREATED = 200; 177 178 181 public final static int GROUP_REMOVED = 201; 182 183 186 public final static int GROUP_UPDATED = 202; 187 188 191 public static final int GRANT_ACCESS = 2000; 192 193 196 public static final int REVOKE_ACCESS = 2001; 197 198 201 public static final int SET_PERSONAL_ANSWER = 2026; 202 203 206 public static final int CREATE_AUTHENTICATION_SCHEME = 2028; 207 208 211 public static final int DELETE_AUTHENTICATION_SCHEME = 2029; 212 213 216 public static final int UPDATE_AUTHENTICATION_SCHEME = 2030; 217 218 221 public static final int CHANGE_PASSWORD = 2034; 222 223 226 227 230 public static final int INSTALL_EXTENSION = 2080; 231 232 235 public static final int UPDATE_EXTENSION = 2081; 236 237 240 public static final int REMOVE_EXTENSION = 2082; 241 242 245 public static final int REMOVING_EXTENSION = 2083; 246 247 250 251 254 public static final int CREATE_IP_RESTRICTION = 2150; 255 256 259 public static final int EDIT_IP_RESTRICTION = 2152; 260 261 264 public static final int DELETE_IP_RESTRICTION = 2151; 265 266 269 public static final int IP_RESTRICTION_MOVE_UP = 2153; 270 271 274 public static final int IP_RESTRICTION_MOVE_DOWN = 2154; 275 276 279 280 283 public static final int CREATE_PROPERTY_PROFILE = 2005; 284 285 288 public static final int UPDATE_PROPERTY_PROFILE = 2048; 289 290 293 public static final int DELETE_PROPERTY_PROFILE = 2049; 294 295 298 299 303 public static final int RESOURCE_ATTACHED_TO_POLICY = 2100; 304 305 309 public static final int RESOURCE_DETACHED_FROM_POLICY = 2101; 310 311 314 public static final int GRANT_POLICY_TO_PRINCIPAL = 2102; 315 316 319 public static final int REVOKE_POLICY_FROM_PRINCIPAL = 2103; 320 321 324 public static final int CREATE_POLICY = 2041; 325 326 329 public static final int UPDATE_POLICY = 2042; 330 331 334 public static final int DELETE_POLICY = 2043; 335 336 339 public static final int CREATE_ACCESS_RIGHT = 2050; 340 341 344 public static final int UPDATE_ACCESS_RIGHT = 2051; 345 346 349 public static final int DELETE_ACCESS_RIGHT = 2052; 350 351 352 353 356 public static final int ATTRIBUTE_DEFINITION_CREATED = 2060; 357 358 361 public static final int ATTRIBUTE_DEFINITION_UPDATED = 2061; 362 363 366 public static final int ATTRIBUTE_DEFINITION_REMOVED = 2062; 367 368 371 372 375 public static final int MESSAGE_QUEUED = 2070; 376 377 380 public static final int MESSAGE_SENT = 2071; 381 382 385 public static final int MESSAGE_QUEUE_CLEARED = 2072; 386 } 387
| Popular Tags
|