fa29ec9434b03269d4bdca1d36e74e9d058a3eb0
[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 NetworkRpcOutputEntity {
9     public OutputEntity getOutput() {
10         return output;
11     }
12
13     public void setOutput(OutputEntity output) {
14         this.output = output;
15     }
16
17     @JsonProperty("output")
18     private OutputEntity output;
19 }