diff options
author | ramverma <ram.krishna.verma@ericsson.com> | 2018-09-05 17:19:10 +0100 |
---|---|---|
committer | ramverma <ram.krishna.verma@ericsson.com> | 2018-09-06 19:43:24 +0100 |
commit | 905324b15dd1a3e80397d514aa22873703d8f239 (patch) | |
tree | 0ff866aa2cd73b2505e699a44ee54234aa0fad7b /model | |
parent | 9d3612f325ae52e41a0a6d9e794b42e98305d7ec (diff) |
Adding code for handling notifications from SDC
Change-Id: I45f28cbce8defead5e1f43ed81fa5ea6a2b2208b
Issue-ID: POLICY-974
Signed-off-by: ramverma <ram.krishna.verma@ericsson.com>
Diffstat (limited to 'model')
-rw-r--r-- | model/src/main/java/org/onap/policy/distribution/model/Csar.java | 12 |
1 files changed, 6 insertions, 6 deletions
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; } |