Changes for checkstyle 8.32
[policy/apex-pdp.git] / testsuites / integration / integration-context-test / src / test / java / org / onap / policy / apex / testsuites / integration / context / utils / Constants.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2018 Ericsson. All rights reserved.
4  *  Modifications Copyright (C) 2019 Nordix Foundation.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.apex.testsuites.integration.context.utils;
23
24 import java.util.TimeZone;
25 import org.onap.policy.apex.context.test.concepts.TestPolicyContextItem;
26 import org.onap.policy.apex.model.basicmodel.concepts.AxArtifactKey;
27
28 /**
29  * The Class Constants provides constants for context tests.
30  */
31 public class Constants {
32     public static final String MAP_CONTEXT_ALBUM = "MapContextAlbum";
33     public static final String LONG_CONTEXT_ALBUM = "LongContextAlbum";
34     public static final String DATE_CONTEXT_ALBUM = "DateContextAlbum";
35
36     public static final String EXTERNAL_CONTEXT_ALBUM = "ExternalContextAlbum";
37     public static final String GLOBAL_CONTEXT_ALBUM = "GlobalContextAlbum";
38     public static final String POLICY_CONTEXT_ALBUM = "PolicyContextAlbum";
39
40     public static final String APEX_DISTRIBUTOR = "ApexDistributor";
41     public static final String VERSION = "0.0.1";
42     public static final int INT_VAL = 0xFFFFFFFF;
43     public static final int INT_VAL_2 = 2000;
44     public static final int INT_VAL_3 = -1;
45     public static final String EXCEPTION_MESSAGE = "Test should throw an exception";
46     public static final byte BYTE_VAL = (byte) 0xFF;
47     public static final double PI_VAL = Math.PI;
48     public static final float FLOAT_VAL = 3.14159265359F;
49     public static final String EXTERNAL_CONTEXT = "externalContext";
50     public static final String GLOBAL_CONTEXT_KEY = "globalContext";
51     public static final String STRING_GLOBAL_VAL = "This is a global context string";
52     public static final String STRING_VAL = "This is a policy context string";
53     public static final String STRING_EXT_VAL = "This is an external context string";
54     public static final long LONG_VAL = 0xFFFFFFFFFFFFFFFFL;
55     public static final String TEST_POLICY_CONTEXT_ITEM = TestPolicyContextItem.class.getName();
56     public static final TimeZone TIME_ZONE = TimeZone.getTimeZone("Europe/Dublin");
57
58     public static final AxArtifactKey L_TYPE_CONTEXT_ALBUM = new AxArtifactKey("LTypeContextAlbum", VERSION);
59     public static final String TEST_VALUE = "testValue";
60
61     private static final AxArtifactKey KEY = new AxArtifactKey("testC-top", VERSION);
62     private static final AxArtifactKey KEY3 = new AxArtifactKey("testC-bot", VERSION);
63     private static final AxArtifactKey KEY2 = new AxArtifactKey("testC-next", VERSION);
64
65     private static final AxArtifactKey[] USED_ARTIFACT_STACK_ARRAY = new AxArtifactKey[] {KEY, KEY2, KEY3};
66
67     /**
68      * Instantiates a new constants.
69      */
70     private Constants() {
71         // Private constructor to block subclassing
72     }
73
74     /**
75      * Gets the ax artifact key array.
76      *
77      * @return the ax artifact key array
78      */
79     public static final AxArtifactKey[] getAxArtifactKeyArray() {
80         return USED_ARTIFACT_STACK_ARRAY;
81     }
82 }