adding a new event type for custom certificates.

This commit is contained in:
abhishek 2010-12-27 11:57:26 -08:00
parent 2203f9c403
commit a619f71bbd
2 changed files with 4 additions and 3 deletions

View File

@ -44,7 +44,7 @@ public class UploadCustomCertificateCmd extends BaseAsyncCmd {
@Override
public String getEventType() {
return EventTypes.EVENT_VOLUME_CREATE;
return EventTypes.EVENT_UPLOAD_CUSTOM_CERTIFICATE;
}
@Override

View File

@ -67,7 +67,6 @@ public class EventTypes {
public static final String EVENT_ACCOUNT_DISABLE = "ACCOUNT.DISABLE";
public static final String EVENT_ACCOUNT_CREATE = "ACCOUNT.CREATE";
public static final String EVENT_ACCOUNT_DELETE = "ACCOUNT.DELETE";
// UserVO Events
public static final String EVENT_USER_LOGIN = "USER.LOGIN";
@ -179,5 +178,7 @@ public class EventTypes {
//Network
public static final String NETWORK_RESTART = "NETWORK.RESTART";
//Custom certificates
public static final String EVENT_UPLOAD_CUSTOM_CERTIFICATE = "UPLOAD.CUSTOM.CERTIFICATE";
}