From 848989938c1901fb32530e79a5d17c2fc0b930e0 Mon Sep 17 00:00:00 2001 From: ajay_dp001 Date: Tue, 22 Sep 2020 16:48:31 +0530 Subject: [CLAMP] TOSCA Defined Control Loop PoC Initial Checkin Issue-ID: CLAMP-930 Signed-off-by: ajay_dp001 Change-Id: Ic00c2cdf9ac23b69c6b58aadb24ccf6cf24a64c8 --- .../concepts/ControlLoopToscaServiceTemplate.java | 27 ++++++++++++++++++++++ .../concepts/ControlLoopToscaTopologyTemplate.java | 27 ++++++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 src/main/java/org/onap/clamp/controlloop/models/tosca/authorative/concepts/ControlLoopToscaServiceTemplate.java create mode 100644 src/main/java/org/onap/clamp/controlloop/models/tosca/authorative/concepts/ControlLoopToscaTopologyTemplate.java (limited to 'src/main/java') diff --git a/src/main/java/org/onap/clamp/controlloop/models/tosca/authorative/concepts/ControlLoopToscaServiceTemplate.java b/src/main/java/org/onap/clamp/controlloop/models/tosca/authorative/concepts/ControlLoopToscaServiceTemplate.java new file mode 100644 index 000000000..2b7ecf94f --- /dev/null +++ b/src/main/java/org/onap/clamp/controlloop/models/tosca/authorative/concepts/ControlLoopToscaServiceTemplate.java @@ -0,0 +1,27 @@ +/*- + * ============LICENSE_START======================================================= + * Copyright (C) 2020 Nordix Foundation. + * ================================================================================ + * 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. + * + * SPDX-License-Identifier: Apache-2.0 + * ============LICENSE_END========================================================= + */ + +package org.onap.clamp.controlloop.models.tosca.authorative.concepts; + +import org.onap.policy.models.tosca.authorative.concepts.ToscaServiceTemplate; + +public class ControlLoopToscaServiceTemplate extends ToscaServiceTemplate { + //TODO More code to be added +} \ No newline at end of file diff --git a/src/main/java/org/onap/clamp/controlloop/models/tosca/authorative/concepts/ControlLoopToscaTopologyTemplate.java b/src/main/java/org/onap/clamp/controlloop/models/tosca/authorative/concepts/ControlLoopToscaTopologyTemplate.java new file mode 100644 index 000000000..5f125fedd --- /dev/null +++ b/src/main/java/org/onap/clamp/controlloop/models/tosca/authorative/concepts/ControlLoopToscaTopologyTemplate.java @@ -0,0 +1,27 @@ +/*- + * ============LICENSE_START======================================================= + * Copyright (C) 2020 Nordix Foundation. + * ================================================================================ + * 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. + * + * SPDX-License-Identifier: Apache-2.0 + * ============LICENSE_END========================================================= + */ + +package org.onap.clamp.controlloop.models.tosca.authorative.concepts; + +import org.onap.policy.models.tosca.authorative.concepts.ToscaTopologyTemplate; + +public class ControlLoopToscaTopologyTemplate extends ToscaTopologyTemplate { + //TODO More code to be added +} \ No newline at end of file -- cgit 1.2.3-korg