86c1bd1895ffd3f18549add30cd385cfee1dfa66
[sdc.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20 package org.openecomp.sdc.vendorsoftwareproduct;
21
22 public final class VendorSoftwareProductConstants {
23
24     public static final String VENDOR_SOFTWARE_PRODUCT_VERSIONABLE_TYPE = "VendorSoftwareProduct";
25     public static final String VSP_PACKAGE_ZIP = "VSPPackage.zip";
26     public static final String CSAR = "CSAR";
27     public static final String INFORMATION_ARTIFACT_NAME = "VSP_%s_Information.txt";
28     public static final String NAME_PATTERN = "^[a-zA-Z0-9_]*$";
29
30     public final class UniqueValues {
31
32         public static final String VENDOR_SOFTWARE_PRODUCT_NAME = "Vendor Software Product name";
33         public static final String PROCESS_NAME = "Process name";
34         public static final String NETWORK_NAME = "Network name";
35         public static final String COMPONENT_NAME = "ComponentData name";
36         public static final String NIC_NAME = "NIC name";
37         public static final String COMPUTE_NAME = "Compute name";
38         public static final String ORCHESTRATION_CANDIDATE_NAME = "Orchestration Candidate name";
39         //public static final String COMPONENT_ARTIFACT_NAME = "ComponentArtifact name";
40         public static final String DEPLOYMENT_FLAVOR_NAME = "Deployment Flavor name";
41         public static final String IMAGE_NAME = "Image name";
42     }
43 }