Sync Integ to Master
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / distribution / api / client / RegistrationRequest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.be.distribution.api.client;
22
23 import java.util.List;
24
25 public class RegistrationRequest {
26     String apiPublicKey;
27     String distrEnvName;
28     Boolean isConsumerToSdcDistrStatusTopic;
29     List<String> distEnvEndPoints;
30
31     public RegistrationRequest(String apiPublicKey, String distrEnvName, boolean isConsumerToSdcDistrStatusTopic) {
32         this.apiPublicKey = apiPublicKey;
33         this.distrEnvName = distrEnvName;
34         this.isConsumerToSdcDistrStatusTopic = isConsumerToSdcDistrStatusTopic;
35     }
36     public RegistrationRequest(String apiPublicKey, String distrEnvName, List<String> distEnvEndPoints, boolean isConsumerToSdcDistrStatusTopic){
37         this.apiPublicKey = apiPublicKey;
38         this.distrEnvName = distrEnvName;
39         this.distEnvEndPoints = distEnvEndPoints;
40         this.isConsumerToSdcDistrStatusTopic = isConsumerToSdcDistrStatusTopic;
41     }
42
43     public String getApiPublicKey() {
44         return apiPublicKey;
45     }
46
47     public String getDistrEnvName() {
48         return distrEnvName;
49     }
50
51     public Boolean getIsConsumerToSdcDistrStatusTopic() {
52         return isConsumerToSdcDistrStatusTopic;
53     }
54     public List<String> getDistEnvEndPoints() {
55         return distEnvEndPoints;
56     }
57
58     public void setDistEnvEndPoints(List<String> distEnvEndPoints) {
59         this.distEnvEndPoints = distEnvEndPoints;
60     }
61
62 }