aboutsummaryrefslogtreecommitdiffstats
path: root/bpmn/MSOInfrastructureBPMN/src/main/java/org/openecomp/mso/bpmn/infrastructure/workflow/serviceTask/client/entity/NetworkInputPaarametersEntity.java
blob: c70980d0683b58c3939dc393388ebaea45a09b96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package org.openecomp.mso.bpmn.infrastructure.workflow.serviceTask.client.entity;

import com.fasterxml.jackson.annotation.JsonProperty;

import java.util.List;

/**
 * Created by 10112215 on 2017/9/20.
 */
public class NetworkInputPaarametersEntity {
    public List<ParamEntity> getParamList() {
        return paramList;
    }

    public void setParamList(List<ParamEntity> paramList) {
        this.paramList = paramList;
    }

    @JsonProperty("param")
    private List<ParamEntity> paramList;
}