e8fd07d47a50f46942ae1587d256ad956acdaa72
[sdc/sdc-workflow-designer.git] /
1 /**
2  * Copyright (c) 2018 ZTE Corporation.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the Apache License, Version 2.0
5  * and the Eclipse Public License v1.0 which both accompany this distribution,
6  * and are available at http://www.eclipse.org/legal/epl-v10.html
7  * and http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Contributors:
10  *     ZTE - initial API and implementation and/or initial documentation
11  */
12 package org.onap.sdc.workflowdesigner;
13
14 import com.fasterxml.jackson.annotation.JsonProperty;
15
16 /**
17  *
18  */
19 public class SDCServiceProxyInfo {
20   private String serviceAddr;
21   
22   private String xEcompInstanceId;
23   
24   private String authorization;
25
26   /**
27    * @return the serviceAddr
28    */
29   @JsonProperty
30   public String getServiceAddr() {
31     return serviceAddr;
32   }
33
34   /**
35    * @param serviceAddr the serviceAddr to set
36    */
37   @JsonProperty
38   public void setServiceAddr(String serviceAddr) {
39     this.serviceAddr = serviceAddr;
40   }
41
42   /**
43    * @return the xEcompInstanceId
44    */
45   @JsonProperty
46   public String getxEcompInstanceId() {
47     return xEcompInstanceId;
48   }
49
50   /**
51    * @param xEcompInstanceId the xEcompInstanceId to set
52    */
53   @JsonProperty
54   public void setxEcompInstanceId(String xEcompInstanceId) {
55     this.xEcompInstanceId = xEcompInstanceId;
56   }
57
58   /**
59    * @return the authorization
60    */
61   @JsonProperty
62   public String getAuthorization() {
63     return authorization;
64   }
65
66   /**
67    * @param authorization the authorization to set
68    */
69   @JsonProperty
70   public void setAuthorization(String authorization) {
71     this.authorization = authorization;
72   }
73
74 }