Merge "Replaced with diamond operator"
[so.git] / bpmn / MSOInfrastructureBPMN / src / main / java / org / openecomp / mso / bpmn / infrastructure / workflow / serviceTask / client / entity / ServiceResponseInformationEntity.java
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/22.
7  */
8 public class ServiceResponseInformationEntity {
9     @JsonProperty("instance-id")
10     private String instanceId;
11
12     @JsonProperty("object-path")
13     private String objectPath;
14
15     public String getInstanceId() {
16         return instanceId;
17     }
18
19     public void setInstanceId(String instanceId) {
20         this.instanceId = instanceId;
21     }
22
23     public String getObjectPath() {
24         return objectPath;
25     }
26
27     public void setObjectPath(String objectPath) {
28         this.objectPath = objectPath;
29     }
30 }