045392489b4bd507a54ad33986c6d2168e02009f
[so.git] /
1 package org.openecomp.mso.bpmn.infrastructure.workflow.serviceTask.client.entity;
2
3 import com.fasterxml.jackson.annotation.JsonProperty;
4
5 /**
6  * Created by 10112215 on 2017/9/20.
7  */
8 public class NetworkRpcInputEntity {
9     public InputEntity getInput() {
10         return input;
11     }
12
13     public void setInput(InputEntity input) {
14         this.input = input;
15     }
16
17     @JsonProperty("input")
18     private InputEntity input = null;
19 }