summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ems/boco/.classpath2
-rw-r--r--ems/boco/src/main/java/org/onap/vfc/nfvo/emsdriver/collector/alarm/MessageUtil.java4
2 files changed, 3 insertions, 3 deletions
diff --git a/ems/boco/.classpath b/ems/boco/.classpath
index 68d3e86..8019572 100644
--- a/ems/boco/.classpath
+++ b/ems/boco/.classpath
@@ -22,7 +22,7 @@
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
- <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jdk1.8.0_144">
+ <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
diff --git a/ems/boco/src/main/java/org/onap/vfc/nfvo/emsdriver/collector/alarm/MessageUtil.java b/ems/boco/src/main/java/org/onap/vfc/nfvo/emsdriver/collector/alarm/MessageUtil.java
index 7bf7a11..ff34554 100644
--- a/ems/boco/src/main/java/org/onap/vfc/nfvo/emsdriver/collector/alarm/MessageUtil.java
+++ b/ems/boco/src/main/java/org/onap/vfc/nfvo/emsdriver/collector/alarm/MessageUtil.java
@@ -19,8 +19,8 @@ import java.io.*;
public class MessageUtil {
- public static String MSG_BODY_ENCODE_CHARSET = "UTF-8";
- public static int MSG_BUF_SIZE = 8096;
+ public static final String MSG_BODY_ENCODE_CHARSET = "UTF-8";
+ public static final int MSG_BUF_SIZE = 8096;
public static Msg putLoginMsg(String user, String passwd) {
String body = String.format(Msg.reqLoginAlarm, user, passwd, "msg");