From 905324b15dd1a3e80397d514aa22873703d8f239 Mon Sep 17 00:00:00 2001 From: ramverma Date: Wed, 5 Sep 2018 17:19:10 +0100 Subject: Adding code for handling notifications from SDC Change-Id: I45f28cbce8defead5e1f43ed81fa5ea6a2b2208b Issue-ID: POLICY-974 Signed-off-by: ramverma --- .../main/java/org/onap/policy/distribution/model/Csar.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'model/src/main/java/org') diff --git a/model/src/main/java/org/onap/policy/distribution/model/Csar.java b/model/src/main/java/org/onap/policy/distribution/model/Csar.java index d299fce8..df7eaf28 100644 --- a/model/src/main/java/org/onap/policy/distribution/model/Csar.java +++ b/model/src/main/java/org/onap/policy/distribution/model/Csar.java @@ -5,15 +5,15 @@ * 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========================================================= */ @@ -27,16 +27,16 @@ public class Csar implements PolicyInput { private String csarFilePath; - public Csar(String csarFilePath) { + public Csar(final String csarFilePath) { this.csarFilePath = csarFilePath; } /** * Get the path to the CSAR file. - * + * * @return the path of the CSAR file */ - String getCsarPath() { + public String getCsarPath() { return csarFilePath; } -- cgit 1.2.3-korg