X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=zte%2Fsfc-driver%2Fsfc-driver%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Fsfc%2Fentity%2Fportpair%2FServiceFunctionParameter.java;fp=zte%2Fsfc-driver%2Fsfc-driver%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Fsfc%2Fentity%2Fportpair%2FServiceFunctionParameter.java;h=569a05b88d443089ccb705b98575267fa565b4b3;hb=3062ee6e0b4ed88c5a3b10ebf8188341c5b92987;hp=28dd1b8261910d270c640a112a768dda0c97048c;hpb=1d55cb187443fedb1004fc25b8ff7e956152adf6;p=vfc%2Fnfvo%2Fdriver%2Fsfc.git diff --git a/zte/sfc-driver/sfc-driver/src/main/java/org/onap/sfc/entity/portpair/ServiceFunctionParameter.java b/zte/sfc-driver/sfc-driver/src/main/java/org/onap/sfc/entity/portpair/ServiceFunctionParameter.java index 28dd1b8..569a05b 100644 --- a/zte/sfc-driver/sfc-driver/src/main/java/org/onap/sfc/entity/portpair/ServiceFunctionParameter.java +++ b/zte/sfc-driver/sfc-driver/src/main/java/org/onap/sfc/entity/portpair/ServiceFunctionParameter.java @@ -16,26 +16,12 @@ package org.onap.sfc.entity.portpair; import com.google.gson.annotations.SerializedName; +import lombok.Data; +@Data public class ServiceFunctionParameter { @SerializedName("service-function-parameter") private String serviceFunctionParamter; @SerializedName("service-function-parameter-value") private String getServiceFunctionParamterValue; - - public String getServiceFunctionParamter() { - return serviceFunctionParamter; - } - - public void setServiceFunctionParamter(String serviceFunctionParamter) { - this.serviceFunctionParamter = serviceFunctionParamter; - } - - public String getGetServiceFunctionParamterValue() { - return getServiceFunctionParamterValue; - } - - public void setGetServiceFunctionParamterValue(String getServiceFunctionParamterValue) { - this.getServiceFunctionParamterValue = getServiceFunctionParamterValue; - } }