summaryrefslogtreecommitdiffstats
path: root/zte/sfc-driver/sfc-driver/src/main/java/org/onap/sfc/entity/portpair/ServiceFunctionParameter.java
diff options
context:
space:
mode:
Diffstat (limited to 'zte/sfc-driver/sfc-driver/src/main/java/org/onap/sfc/entity/portpair/ServiceFunctionParameter.java')
-rw-r--r--zte/sfc-driver/sfc-driver/src/main/java/org/onap/sfc/entity/portpair/ServiceFunctionParameter.java18
1 files changed, 2 insertions, 16 deletions
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;
- }
}