aboutsummaryrefslogtreecommitdiffstats
path: root/ncomp-docker-adaptor/src/main/sirius-gen/org/openecomp/ncomp/servers/docker/logging
diff options
context:
space:
mode:
Diffstat (limited to 'ncomp-docker-adaptor/src/main/sirius-gen/org/openecomp/ncomp/servers/docker/logging')
-rw-r--r--ncomp-docker-adaptor/src/main/sirius-gen/org/openecomp/ncomp/servers/docker/logging/DockerAdaptor.properties2
-rw-r--r--ncomp-docker-adaptor/src/main/sirius-gen/org/openecomp/ncomp/servers/docker/logging/DockerAdaptorMessageEnum.java23
-rw-r--r--ncomp-docker-adaptor/src/main/sirius-gen/org/openecomp/ncomp/servers/docker/logging/DockerAdaptorOperationEnum.java34
-rw-r--r--ncomp-docker-adaptor/src/main/sirius-gen/org/openecomp/ncomp/servers/docker/logging/DockerHost.properties126
-rw-r--r--ncomp-docker-adaptor/src/main/sirius-gen/org/openecomp/ncomp/servers/docker/logging/DockerHostMessageEnum.java81
-rw-r--r--ncomp-docker-adaptor/src/main/sirius-gen/org/openecomp/ncomp/servers/docker/logging/DockerHostOperationEnum.java78
6 files changed, 128 insertions, 216 deletions
diff --git a/ncomp-docker-adaptor/src/main/sirius-gen/org/openecomp/ncomp/servers/docker/logging/DockerAdaptor.properties b/ncomp-docker-adaptor/src/main/sirius-gen/org/openecomp/ncomp/servers/docker/logging/DockerAdaptor.properties
index 555c4fc..11f5270 100644
--- a/ncomp-docker-adaptor/src/main/sirius-gen/org/openecomp/ncomp/servers/docker/logging/DockerAdaptor.properties
+++ b/ncomp-docker-adaptor/src/main/sirius-gen/org/openecomp/ncomp/servers/docker/logging/DockerAdaptor.properties
@@ -1,6 +1,6 @@
dummy=\
- null|\
+ dummy-null|\
null|\
null|\
null
diff --git a/ncomp-docker-adaptor/src/main/sirius-gen/org/openecomp/ncomp/servers/docker/logging/DockerAdaptorMessageEnum.java b/ncomp-docker-adaptor/src/main/sirius-gen/org/openecomp/ncomp/servers/docker/logging/DockerAdaptorMessageEnum.java
index 2efd8de..6bf960c 100644
--- a/ncomp-docker-adaptor/src/main/sirius-gen/org/openecomp/ncomp/servers/docker/logging/DockerAdaptorMessageEnum.java
+++ b/ncomp-docker-adaptor/src/main/sirius-gen/org/openecomp/ncomp/servers/docker/logging/DockerAdaptorMessageEnum.java
@@ -1,25 +1,4 @@
-/*-
- * ============LICENSE_START==========================================
- * OPENECOMP - DCAE
- * ===================================================================
- * Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
- * ===================================================================
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * ============LICENSE_END============================================
- */
-
-
package org.openecomp.ncomp.servers.docker.logging;
import com.att.eelf.i18n.EELFResourceManager;
@@ -30,6 +9,6 @@ public enum DockerAdaptorMessageEnum implements EcompMessageEnum {
dummy;
static {
- EELFResourceManager.loadMessageBundle("org.openecomp.ncomp.servers.docker.logging.DockerAdaptor");
+ EELFResourceManager.loadMessageBundle("org/openecomp/ncomp/servers/docker/logging/DockerAdaptor");
}
}
diff --git a/ncomp-docker-adaptor/src/main/sirius-gen/org/openecomp/ncomp/servers/docker/logging/DockerAdaptorOperationEnum.java b/ncomp-docker-adaptor/src/main/sirius-gen/org/openecomp/ncomp/servers/docker/logging/DockerAdaptorOperationEnum.java
index 8a36bca..ec29998 100644
--- a/ncomp-docker-adaptor/src/main/sirius-gen/org/openecomp/ncomp/servers/docker/logging/DockerAdaptorOperationEnum.java
+++ b/ncomp-docker-adaptor/src/main/sirius-gen/org/openecomp/ncomp/servers/docker/logging/DockerAdaptorOperationEnum.java
@@ -1,29 +1,21 @@
-/*-
- * ============LICENSE_START==========================================
- * OPENECOMP - DCAE
- * ===================================================================
- * Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
- * ===================================================================
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * ============LICENSE_END============================================
- */
-
-
package org.openecomp.ncomp.servers.docker.logging;
import org.openecomp.entity.EcompOperationEnum;
public enum DockerAdaptorOperationEnum implements EcompOperationEnum {
+ ;
+
+
+ private String n;
+
+ private DockerAdaptorOperationEnum(String n) {
+ this.n = n;
+ }
+
+ @Override
+ public String toString() {
+ return n;
+ }
}
diff --git a/ncomp-docker-adaptor/src/main/sirius-gen/org/openecomp/ncomp/servers/docker/logging/DockerHost.properties b/ncomp-docker-adaptor/src/main/sirius-gen/org/openecomp/ncomp/servers/docker/logging/DockerHost.properties
index b815973..588fd0f 100644
--- a/ncomp-docker-adaptor/src/main/sirius-gen/org/openecomp/ncomp/servers/docker/logging/DockerHost.properties
+++ b/ncomp-docker-adaptor/src/main/sirius-gen/org/openecomp/ncomp/servers/docker/logging/DockerHost.properties
@@ -1,186 +1,174 @@
dummy=\
- null|\
+ dummy-null|\
null|\
null|\
null
-poll=\
- poll-FAILED-5001W|\
- {0}|\
- null|\
- Operation Failed with Exception
-
-startContainer=\
- startContainer-FAILED-5001W|\
+REQUEST_FAILED_poll=\
+ REQUEST-FAILED-poll-4001W|\
{0}|\
null|\
Operation Failed with Exception
-stopContainer=\
- stopContainer-FAILED-5001W|\
+REQUEST_FAILED_startContainer=\
+ REQUEST-FAILED-startContainer-4001W|\
{0}|\
null|\
Operation Failed with Exception
-restartContainer=\
- restartContainer-FAILED-5001W|\
+REQUEST_FAILED_stopContainer=\
+ REQUEST-FAILED-stopContainer-4001W|\
{0}|\
null|\
Operation Failed with Exception
-pauseContainer=\
- pauseContainer-FAILED-5001W|\
+REQUEST_FAILED_restartContainer=\
+ REQUEST-FAILED-restartContainer-4001W|\
{0}|\
null|\
Operation Failed with Exception
-unpauseContainer=\
- unpauseContainer-FAILED-5001W|\
+REQUEST_FAILED_pauseContainer=\
+ REQUEST-FAILED-pauseContainer-4001W|\
{0}|\
null|\
Operation Failed with Exception
-removeContainer=\
- removeContainer-FAILED-5001W|\
+REQUEST_FAILED_unpauseContainer=\
+ REQUEST-FAILED-unpauseContainer-4001W|\
{0}|\
null|\
Operation Failed with Exception
-inspectContainer=\
- inspectContainer-FAILED-5001W|\
+REQUEST_FAILED_removeContainer=\
+ REQUEST-FAILED-removeContainer-4001W|\
{0}|\
null|\
Operation Failed with Exception
-killContainer=\
- killContainer-FAILED-5001W|\
+REQUEST_FAILED_inspectContainer=\
+ REQUEST-FAILED-inspectContainer-4001W|\
{0}|\
null|\
Operation Failed with Exception
-dockerRun=\
- dockerRun-FAILED-5001W|\
+REQUEST_FAILED_killContainer=\
+ REQUEST-FAILED-killContainer-4001W|\
{0}|\
null|\
Operation Failed with Exception
-dockerRunWithName=\
- dockerRunWithName-FAILED-5001W|\
+REQUEST_FAILED_dockerRun=\
+ REQUEST-FAILED-dockerRun-4001W|\
{0}|\
null|\
Operation Failed with Exception
-dockerRunWithOptions=\
- dockerRunWithOptions-FAILED-5001W|\
+REQUEST_FAILED_dockerRunWithName=\
+ REQUEST-FAILED-dockerRunWithName-4001W|\
{0}|\
null|\
Operation Failed with Exception
-containerStats=\
- containerStats-FAILED-5001W|\
+REQUEST_FAILED_dockerRunWithOptions=\
+ REQUEST-FAILED-dockerRunWithOptions-4001W|\
{0}|\
null|\
Operation Failed with Exception
-containerProcesses=\
- containerProcesses-FAILED-5001W|\
+REQUEST_FAILED_containerStats=\
+ REQUEST-FAILED-containerStats-4001W|\
{0}|\
null|\
Operation Failed with Exception
-pullImage=\
- pullImage-FAILED-5001W|\
+REQUEST_FAILED_containerProcesses=\
+ REQUEST-FAILED-containerProcesses-4001W|\
{0}|\
null|\
Operation Failed with Exception
-REMOTE_poll=\
- REMOTE-poll-FAILED-5001W|\
- {0}|\
- null|\
- Remote Operation Failed with Exception
-
-REMOTE_startContainer=\
- REMOTE-startContainer-FAILED-5001W|\
+REMOTE_CALL_FAILED_poll=\
+ REMOTE-CALL-FAILED-poll-4001W|\
{0}|\
null|\
Remote Operation Failed with Exception
-REMOTE_stopContainer=\
- REMOTE-stopContainer-FAILED-5001W|\
+REMOTE_CALL_FAILED_startContainer=\
+ REMOTE-CALL-FAILED-startContainer-4001W|\
{0}|\
null|\
Remote Operation Failed with Exception
-REMOTE_restartContainer=\
- REMOTE-restartContainer-FAILED-5001W|\
+REMOTE_CALL_FAILED_stopContainer=\
+ REMOTE-CALL-FAILED-stopContainer-4001W|\
{0}|\
null|\
Remote Operation Failed with Exception
-REMOTE_pauseContainer=\
- REMOTE-pauseContainer-FAILED-5001W|\
+REMOTE_CALL_FAILED_restartContainer=\
+ REMOTE-CALL-FAILED-restartContainer-4001W|\
{0}|\
null|\
Remote Operation Failed with Exception
-REMOTE_unpauseContainer=\
- REMOTE-unpauseContainer-FAILED-5001W|\
+REMOTE_CALL_FAILED_pauseContainer=\
+ REMOTE-CALL-FAILED-pauseContainer-4001W|\
{0}|\
null|\
Remote Operation Failed with Exception
-REMOTE_removeContainer=\
- REMOTE-removeContainer-FAILED-5001W|\
+REMOTE_CALL_FAILED_unpauseContainer=\
+ REMOTE-CALL-FAILED-unpauseContainer-4001W|\
{0}|\
null|\
Remote Operation Failed with Exception
-REMOTE_inspectContainer=\
- REMOTE-inspectContainer-FAILED-5001W|\
+REMOTE_CALL_FAILED_removeContainer=\
+ REMOTE-CALL-FAILED-removeContainer-4001W|\
{0}|\
null|\
Remote Operation Failed with Exception
-REMOTE_killContainer=\
- REMOTE-killContainer-FAILED-5001W|\
+REMOTE_CALL_FAILED_inspectContainer=\
+ REMOTE-CALL-FAILED-inspectContainer-4001W|\
{0}|\
null|\
Remote Operation Failed with Exception
-REMOTE_dockerRun=\
- REMOTE-dockerRun-FAILED-5001W|\
+REMOTE_CALL_FAILED_killContainer=\
+ REMOTE-CALL-FAILED-killContainer-4001W|\
{0}|\
null|\
Remote Operation Failed with Exception
-REMOTE_dockerRunWithName=\
- REMOTE-dockerRunWithName-FAILED-5001W|\
+REMOTE_CALL_FAILED_dockerRun=\
+ REMOTE-CALL-FAILED-dockerRun-4001W|\
{0}|\
null|\
Remote Operation Failed with Exception
-REMOTE_dockerRunWithOptions=\
- REMOTE-dockerRunWithOptions-FAILED-5001W|\
+REMOTE_CALL_FAILED_dockerRunWithName=\
+ REMOTE-CALL-FAILED-dockerRunWithName-4001W|\
{0}|\
null|\
Remote Operation Failed with Exception
-REMOTE_containerStats=\
- REMOTE-containerStats-FAILED-5001W|\
+REMOTE_CALL_FAILED_dockerRunWithOptions=\
+ REMOTE-CALL-FAILED-dockerRunWithOptions-4001W|\
{0}|\
null|\
Remote Operation Failed with Exception
-REMOTE_containerProcesses=\
- REMOTE-containerProcesses-FAILED-5001W|\
+REMOTE_CALL_FAILED_containerStats=\
+ REMOTE-CALL-FAILED-containerStats-4001W|\
{0}|\
null|\
Remote Operation Failed with Exception
-REMOTE_pullImage=\
- REMOTE-pullImage-FAILED-5001W|\
+REMOTE_CALL_FAILED_containerProcesses=\
+ REMOTE-CALL-FAILED-containerProcesses-4001W|\
{0}|\
null|\
Remote Operation Failed with Exception
diff --git a/ncomp-docker-adaptor/src/main/sirius-gen/org/openecomp/ncomp/servers/docker/logging/DockerHostMessageEnum.java b/ncomp-docker-adaptor/src/main/sirius-gen/org/openecomp/ncomp/servers/docker/logging/DockerHostMessageEnum.java
index aa1d5a2..ceb5e8d 100644
--- a/ncomp-docker-adaptor/src/main/sirius-gen/org/openecomp/ncomp/servers/docker/logging/DockerHostMessageEnum.java
+++ b/ncomp-docker-adaptor/src/main/sirius-gen/org/openecomp/ncomp/servers/docker/logging/DockerHostMessageEnum.java
@@ -1,25 +1,4 @@
-/*-
- * ============LICENSE_START==========================================
- * OPENECOMP - DCAE
- * ===================================================================
- * Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
- * ===================================================================
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * ============LICENSE_END============================================
- */
-
-
package org.openecomp.ncomp.servers.docker.logging;
import com.att.eelf.i18n.EELFResourceManager;
@@ -28,38 +7,36 @@ import org.openecomp.logger.EcompMessageEnum;
public enum DockerHostMessageEnum implements EcompMessageEnum {
dummy,
- poll,
- startContainer,
- stopContainer,
- restartContainer,
- pauseContainer,
- unpauseContainer,
- removeContainer,
- inspectContainer,
- killContainer,
- dockerRun,
- dockerRunWithName,
- dockerRunWithOptions,
- containerStats,
- containerProcesses,
- pullImage,
- REMOTE_poll,
- REMOTE_startContainer,
- REMOTE_stopContainer,
- REMOTE_restartContainer,
- REMOTE_pauseContainer,
- REMOTE_unpauseContainer,
- REMOTE_removeContainer,
- REMOTE_inspectContainer,
- REMOTE_killContainer,
- REMOTE_dockerRun,
- REMOTE_dockerRunWithName,
- REMOTE_dockerRunWithOptions,
- REMOTE_containerStats,
- REMOTE_containerProcesses,
- REMOTE_pullImage;
+ REQUEST_FAILED_poll,
+ REQUEST_FAILED_startContainer,
+ REQUEST_FAILED_stopContainer,
+ REQUEST_FAILED_restartContainer,
+ REQUEST_FAILED_pauseContainer,
+ REQUEST_FAILED_unpauseContainer,
+ REQUEST_FAILED_removeContainer,
+ REQUEST_FAILED_inspectContainer,
+ REQUEST_FAILED_killContainer,
+ REQUEST_FAILED_dockerRun,
+ REQUEST_FAILED_dockerRunWithName,
+ REQUEST_FAILED_dockerRunWithOptions,
+ REQUEST_FAILED_containerStats,
+ REQUEST_FAILED_containerProcesses,
+ REMOTE_CALL_FAILED_poll,
+ REMOTE_CALL_FAILED_startContainer,
+ REMOTE_CALL_FAILED_stopContainer,
+ REMOTE_CALL_FAILED_restartContainer,
+ REMOTE_CALL_FAILED_pauseContainer,
+ REMOTE_CALL_FAILED_unpauseContainer,
+ REMOTE_CALL_FAILED_removeContainer,
+ REMOTE_CALL_FAILED_inspectContainer,
+ REMOTE_CALL_FAILED_killContainer,
+ REMOTE_CALL_FAILED_dockerRun,
+ REMOTE_CALL_FAILED_dockerRunWithName,
+ REMOTE_CALL_FAILED_dockerRunWithOptions,
+ REMOTE_CALL_FAILED_containerStats,
+ REMOTE_CALL_FAILED_containerProcesses;
static {
- EELFResourceManager.loadMessageBundle("org.openecomp.ncomp.servers.docker.logging.DockerHost");
+ EELFResourceManager.loadMessageBundle("org/openecomp/ncomp/servers/docker/logging/DockerHost");
}
}
diff --git a/ncomp-docker-adaptor/src/main/sirius-gen/org/openecomp/ncomp/servers/docker/logging/DockerHostOperationEnum.java b/ncomp-docker-adaptor/src/main/sirius-gen/org/openecomp/ncomp/servers/docker/logging/DockerHostOperationEnum.java
index 211c5a7..018c136 100644
--- a/ncomp-docker-adaptor/src/main/sirius-gen/org/openecomp/ncomp/servers/docker/logging/DockerHostOperationEnum.java
+++ b/ncomp-docker-adaptor/src/main/sirius-gen/org/openecomp/ncomp/servers/docker/logging/DockerHostOperationEnum.java
@@ -1,59 +1,35 @@
-/*-
- * ============LICENSE_START==========================================
- * OPENECOMP - DCAE
- * ===================================================================
- * Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
- * ===================================================================
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * ============LICENSE_END============================================
- */
-
-
package org.openecomp.ncomp.servers.docker.logging;
import org.openecomp.entity.EcompOperationEnum;
public enum DockerHostOperationEnum implements EcompOperationEnum {
- poll,
- startContainer,
- stopContainer,
- restartContainer,
- pauseContainer,
- unpauseContainer,
- removeContainer,
- inspectContainer,
- killContainer,
- dockerRun,
- dockerRunWithName,
- dockerRunWithOptions,
- containerStats,
- containerProcesses,
- pullImage,
- REMOTE_poll,
- REMOTE_startContainer,
- REMOTE_stopContainer,
- REMOTE_restartContainer,
- REMOTE_pauseContainer,
- REMOTE_unpauseContainer,
- REMOTE_removeContainer,
- REMOTE_inspectContainer,
- REMOTE_killContainer,
- REMOTE_dockerRun,
- REMOTE_dockerRunWithName,
- REMOTE_dockerRunWithOptions,
- REMOTE_containerStats,
- REMOTE_containerProcesses,
- REMOTE_pullImage;
+ DockerHost_poll("DockerHost@poll"),
+ DockerHost_startContainer("DockerHost@startContainer"),
+ DockerHost_stopContainer("DockerHost@stopContainer"),
+ DockerHost_restartContainer("DockerHost@restartContainer"),
+ DockerHost_pauseContainer("DockerHost@pauseContainer"),
+ DockerHost_unpauseContainer("DockerHost@unpauseContainer"),
+ DockerHost_removeContainer("DockerHost@removeContainer"),
+ DockerHost_inspectContainer("DockerHost@inspectContainer"),
+ DockerHost_killContainer("DockerHost@killContainer"),
+ DockerHost_dockerRun("DockerHost@dockerRun"),
+ DockerHost_dockerRunWithName("DockerHost@dockerRunWithName"),
+ DockerHost_dockerRunWithOptions("DockerHost@dockerRunWithOptions"),
+ DockerHost_containerStats("DockerHost@containerStats"),
+ DockerHost_containerProcesses("DockerHost@containerProcesses") ;
+
+
+ private String n;
+
+ private DockerHostOperationEnum(String n) {
+ this.n = n;
+ }
+
+ @Override
+ public String toString() {
+ return n;
+ }
+
}