Add netconf support to pnfsimulator.
[integration.git] / test / mocks / pnfsimulator / src / main / java / org / onap / pnfsimulator / message / MessageConstants.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * org.onap.integration
4  * ================================================================================
5  * Copyright (C) 2018 NOKIA 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
21 package org.onap.pnfsimulator.message;
22
23 public final class MessageConstants {
24
25     public static final String EVENT = "event";
26     public static final String DOMAIN = "domain";
27     public static final String EVENT_ID = "eventId";
28     public static final String EVENT_TYPE = "eventType";
29     public static final String LAST_EPOCH_MICROSEC = "lastEpochMicrosec";
30     public static final String PRIORITY = "priority";
31     public static final String SEQUENCE = "sequence";
32     public static final String START_EPOCH_MICROSEC = "startEpochMicrosec";
33     public static final String INTERNAL_HEADER_FIELDS = "internalHeaderFields";
34     public static final String VERSION = "version";
35     public static final String OTHER_FIELDS_VERSION = "otherFieldsVersion";
36     public static final String PNF_LAST_SERVICE_DATE = "pnfLastServiceDate";
37     public static final String PNF_MANUFACTURE_DATE = "pnfManufactureDate";
38
39     public static final String SIMULATOR_PARAMS_CONTAINER = "simulatorParams";
40     public static final String MESSAGE_PARAMS_CONTAINER = "messageParams";
41
42     // mandatory
43     public static final String PNF_OAM_IPV4_ADDRESS = "pnfOamIpv4Address";
44     public static final String PNF_OAM_IPV6_ADDRESS = "pnfOamIpv6Address";
45     public static final String PNF_SERIAL_NUMBER = "pnfSerialNumber";
46     public static final String PNF_VENDOR_NAME = "pnfVendorName";
47     public static final String VES_SERVER_URL = "vesServerUrl";
48     public static final String PNF_PREFIX = "pnf";
49     public static final String COMMON_EVENT_HEADER = "commonEventHeader";
50     public static final String OTHER_FIELDS = "otherFields";
51     public static final String TEST_DURATION = "testDuration";
52     public static final String MESSAGE_INTERVAL = "messageInterval";
53
54     private MessageConstants() {
55     }
56
57 }