2 * ============LICENSE_START======================================================================
3 * Copyright (C) 2024 OpenInfra Foundation Europe. All rights reserved.
4 * ===============================================================================================
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
9 * http://www.apache.org/licenses/LICENSE-2.0
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 * ============LICENSE_END========================================================================
20 package com.oransc.rappmanager.models.csar;
22 import lombok.experimental.UtilityClass;
25 public class RappCsarPathProvider {
27 public static final String TOSCA_METADATA_LOCATION = "TOSCA-Metadata/TOSCA.meta";
28 public static final String ENTRY_DEFINITIONS_INDEX = "Entry-Definitions";
29 public static final String ACM_COMPOSITION_JSON_LOCATION = "Files/Acm/definition/compositions.json";
30 public static final String ACM_DEFINITION_LOCATION = "Files/Acm/definition";
31 public static final String ACM_INSTANCES_LOCATION = "Files/Acm/instances";
32 public static final String SME_PROVIDER_FUNCS_LOCATION = "Files/Sme/providers";
33 public static final String SME_SERVICE_APIS_LOCATION = "Files/Sme/serviceapis";
34 public static final String SME_INVOKERS_LOCATION = "Files/Sme/invokers";
35 public static final String DME_PRODUCER_INFO_TYPES_LOCATION = "Files/Dme/producerinfotypes";
36 public static final String DME_CONSUMER_INFO_TYPES_LOCATION = "Files/Dme/consumerinfotypes";
37 public static final String DME_INFO_PRODUCERS_LOCATION = "Files/Dme/infoproducers";
38 public static final String DME_INFO_CONSUMERS_LOCATION = "Files/Dme/infoconsumers";
39 public static final String ARTIFACTS_LOCATION_JSON_POINTER =
40 "/topology_template/node_templates/applicationServiceDescriptor/artifacts";