Realize the data transaction of VIM.
[aai/esr-server.git] / esr-mgr / src / main / java / org / onap / aai / esr / common / SystemStatus.java
@@ -1,5 +1,5 @@
 /**
- * Copyright 2016-2017 ZTE Corporation.
+ * Copyright 2017 ZTE Corporation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-
 package org.onap.aai.esr.common;
 
-
-public enum ExtSysResuorceType {
-  VIM, SDNC, EMS, VNFM, BASE;
-
-  public static ExtSysResuorceType getType(String type) {
-    return valueOf(type);
-  }
+public enum SystemStatus {
+  normal,abnormal
 }