1 23 24 32 33 package com.sun.enterprise.deployment.backend; 34 35 36 40 public class DeploymentEventType { 41 42 43 44 private DeploymentEventType(String theName) { 45 assert theName != null; 46 name = theName; 47 } 48 49 51 public String toString() { 52 return name; 53 } 54 55 public static final int PRE_DEPLOY = 1; 58 public static final int POST_DEPLOY = 2; 59 60 public static final int PRE_UNDEPLOY = 3; 61 public static final int POST_UNDEPLOY = 4; 62 63 public static final int PRE_ASSOCIATE = 11; 64 public static final int POST_ASSOCIATE = 12; 65 66 public static final int PRE_APP_START = 5; 67 public static final int POST_APP_START = 6; 68 69 public static final int PRE_APP_STOP = 7; 70 public static final int POST_APP_STOP = 8; 71 72 public static final int PRE_DISASSOCIATE = 9; 73 public static final int POST_DISASSOCIATE = 10; 74 75 public static final int PRE_RA_START = 11; 76 public static final int POST_RA_START = 12; 77 78 public static final int PRE_RA_STOP = 13; 79 public static final int POST_RA_STOP = 14; 80 81 public static final int PRE_RES_CREATE = 15; 82 public static final int POST_RES_CREATE = 16; 83 84 public static final int PRE_RES_DELETE = 17; 85 public static final int POST_RES_DELETE = 18; 86 87 private final String name; 88 } 89 | Popular Tags |