2  * Copyright 2016-2017, Nokia Corporation
 
   4  * Licensed under the Apache License, Version 2.0 (the "License");
 
   5  * you may not use this file except in compliance with the License.
 
   6  * You may obtain a copy of the License at
 
   8  *     http://www.apache.org/licenses/LICENSE-2.0
 
  10  * Unless required by applicable law or agreed to in writing, software
 
  11  * distributed under the License is distributed on an "AS IS" BASIS,
 
  12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
  13  * See the License for the specific language governing permissions and
 
  14  * limitations under the License.
 
  17 package com.nokia.vfcadaptor.common.bo;
 
  19 public class AdaptorEnv {
 
  20         private String nslcmIp;
 
  21         private String nslcmPort;
 
  23         //for retrieving token
 
  24         private String cbamIp;
 
  26         private String grantType;
 
  27         private String clientId;
 
  28         private String clientSecret;
 
  30         private String catalogIp;
 
  31         private String catalogPort;
 
  33         public String getCbamIp() {
 
  37         public void setCbamIp(String cbamIp) {
 
  41         public String getGrantType() {
 
  45         public void setGrantType(String grantType) {
 
  46                 this.grantType = grantType;
 
  49         public String getClientId() {
 
  53         public void setClientId(String clientId) {
 
  54                 this.clientId = clientId;
 
  57         public String getClientSecret() {
 
  61         public void setClientSecret(String clientSecret) {
 
  62                 this.clientSecret = clientSecret;
 
  65         public String getCatalogIp() {
 
  69         public void setCatalogIp(String catalogIp) {
 
  70                 this.catalogIp = catalogIp;
 
  73         public String getCatalogPort() {
 
  77         public void setCatalogPort(String catalogPort) {
 
  78                 this.catalogPort = catalogPort;
 
  81         public String getNslcmIp() {
 
  85         public void setNslcmIp(String nslcmIp) {
 
  86                 this.nslcmIp = nslcmIp;
 
  89         public String getNslcmPort() {
 
  93         public void setNslcmPort(String nslcmPort) {
 
  94                 this.nslcmPort = nslcmPort;