Code formatting of configuration framework
[sdc.git] / common / onap-common-configuration-management / onap-configuration-management-core / src / test / java / org / onap / config / util / ConfigTestConstant.java
1 /*
2  * Copyright © 2016-2018 European Support Limited
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.onap.config.util;
18
19 public class ConfigTestConstant {
20
21     public static final String ARTIFACT_NAME_MAXLENGTH = "artifact.name.maxlength";
22     public static final String ARTIFACT_MAXSIZE = "artifact.maxsize";
23     public static final String ARTIFACT_EXT = "artifact.extension";
24     public static final String ARTIFACT_ENC = "artifact.supportedEncryption";
25     public static final String ARTIFACT_NAME_UPPER = "artifact.name.allowedChar";
26     public static final String ARTIFACT_NAME_LOWER = "artifact.name.allowedchar";
27     public static final String ARTIFACT_STATUS = "artifact.status";
28     public static final String ARTIFACT_LOC = "artifact.persistLocation";
29     public static final String ARTIFACT_JSON_SCHEMA = "artifact.jsonSchema";
30     public static final String ARTIFACT_XML_SCHEMA = "artifact.xmlSchema";
31     public static final String ARTIFACT_CONSUMER_APPC = "artifact.consumerAPPC";
32     public static final String ARTIFACT_CONSUMER = "artifact.consumer";
33     public static final String ARTIFACT_MANDATORY_NAME = "artifact.mandatory.name";
34     public static final String ARTIFACT_NAME_MINLENGTH = "artifact.name.minlength";
35     public static final String ARTIFACT_ENCODED = "artifact.encoded";
36
37     public static final String PATH = "PATH";
38     public static final String ONBOARDING_NAMESPACE = "onboarding";
39
40     private ConfigTestConstant() {
41         // prevent instantiation
42     }
43
44 }