From 836bd90e99887e4d92edb0528dc69a693a13512b Mon Sep 17 00:00:00 2001 From: ajay_dp001 Date: Mon, 24 Aug 2020 12:54:04 +0530 Subject: AAI-Simulator: Pulling from PNF-SW-UP CSIT to Integration repo Issue-ID: INT-1704 Signed-off-by: ajay_dp001 Change-Id: Ifc6a71f8303d3b27b40650dea5564365b08b1372 Signed-off-by: mrichomme --- .../java/org/onap/aaisimulator/models/Format.java | 49 ++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100755 test/mocks/aai-simulator/aai-sim/src/main/java/org/onap/aaisimulator/models/Format.java (limited to 'test/mocks/aai-simulator/aai-sim/src/main/java/org/onap/aaisimulator/models/Format.java') diff --git a/test/mocks/aai-simulator/aai-sim/src/main/java/org/onap/aaisimulator/models/Format.java b/test/mocks/aai-simulator/aai-sim/src/main/java/org/onap/aaisimulator/models/Format.java new file mode 100755 index 000000000..174e4166b --- /dev/null +++ b/test/mocks/aai-simulator/aai-sim/src/main/java/org/onap/aaisimulator/models/Format.java @@ -0,0 +1,49 @@ +/*- + * ============LICENSE_START======================================================= + * Copyright (C) 2019 Nordix Foundation. + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + * ============LICENSE_END========================================================= + */ +package org.onap.aaisimulator.models; + +/** + * @author waqas.ikram@ericsson.com + * + */ +public enum Format { + + COUNT("count"), RAW("raw"), PATHED("pathed"); + + private final String value; + + private Format(final String value) { + this.value = value; + } + + public String getValue() { + return value; + } + + public static Format forValue(final String value) { + for (final Format format : Format.values()) { + if (format.getValue().equals(value)) { + return format; + } + } + return RAW; + } + +} -- cgit 1.2.3-korg