/*- * ============LICENSE_START======================================================= * ONAP CLAMP * ================================================================================ * Copyright (C) 2017 AT&T Intellectual Property. All rights * reserved. * ================================================================================ * 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. * ============LICENSE_END============================================ * =================================================================== * */ package org.onap.clamp.clds.model; import java.io.Serializable; public class CldsVfKPIData implements Serializable { private static final long serialVersionUID = 9067755871527776380L; private String nfNamingCode; private String nfNamingValue; private String fieldPath; private String fieldPathValue; private String thresholdName; private String thresholdValue; public String getNfNamingCode() { return nfNamingCode; } public void setNfNamingCode(String nfNamingCode) { this.nfNamingCode = nfNamingCode; } public String getNfNamingValue() { return nfNamingValue; } public void setNfNamingValue(String nfNamingValue) { this.nfNamingValue = nfNamingValue; } public String getFieldPath() { return fieldPath; } public void setFieldPath(String fieldPath) { this.fieldPath = fieldPath; } public String getFieldPathValue() { return fieldPathValue; } public void setFieldPathValue(String fieldPathValue) { this.fieldPathValue = fieldPathValue; } public String getThresholdName() { return thresholdName; } public void setThresholdName(String thresholdName) { this.thresholdName = thresholdName; } public String getThresholdValue() { return thresholdValue; } public void setThresholdValue(String thresholdValue) { this.thresholdValue = thresholdValue; } }