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
10 * ZTE - initial API and implementation and/or initial documentation
12 package org.onap.sdc.workflowdesigner;
14 import com.fasterxml.jackson.annotation.JsonProperty;
19 public class SDCServiceProxyInfo {
20 private String serviceAddr;
22 private String xEcompInstanceId;
24 private String authorization;
27 * @return the serviceAddr
30 public String getServiceAddr() {
35 * @param serviceAddr the serviceAddr to set
38 public void setServiceAddr(String serviceAddr) {
39 this.serviceAddr = serviceAddr;
43 * @return the xEcompInstanceId
46 public String getxEcompInstanceId() {
47 return xEcompInstanceId;
51 * @param xEcompInstanceId the xEcompInstanceId to set
54 public void setxEcompInstanceId(String xEcompInstanceId) {
55 this.xEcompInstanceId = xEcompInstanceId;
59 * @return the authorization
62 public String getAuthorization() {
67 * @param authorization the authorization to set
70 public void setAuthorization(String authorization) {
71 this.authorization = authorization;