1 package org.openecomp.mso.bpmn.infrastructure.workflow.serviceTask.client.entity;
3 import com.fasterxml.jackson.annotation.JsonProperty;
6 * Created by 10112215 on 2017/9/20.
8 public class NetworkInformationEntity {
9 @JsonProperty("network-id")
10 private String networkId;
12 @JsonProperty("network-type")
13 private String networkType;
15 @JsonProperty("ecomp-model-information")
16 private EcompModelInformationEntity ecompModelInformation;
18 public String getNetworkId() {
22 public void setNetworkId(String networkId) {
23 this.networkId = networkId;
26 public String getNetworkType() {
30 public void setNetworkType(String networkType) {
31 this.networkType = networkType;
34 public EcompModelInformationEntity getEcompModelInformation() {
35 return ecompModelInformation;
38 public void setEcompModelInformation(EcompModelInformationEntity ecompModelInformation) {
39 this.ecompModelInformation = ecompModelInformation;