Update license date and text
[aai/data-router.git] / src / main / java / org / onap / aai / datarouter / policy / EntityEventPolicyConfig.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21 package org.onap.aai.datarouter.policy;
22
23 public class EntityEventPolicyConfig {
24
25   private String sourceDomain;
26   private String searchBaseUrl;
27   private String searchEndpoint;
28   private String searchEndpointDocuments;
29   private String searchEntitySearchIndex;
30   private String searchTopographySearchIndex;
31   private String searchEntityAutoSuggestIndex;
32   private String searchAggregationVnfIndex;
33   private String searchCertName;
34   private String searchKeystorePwd;
35   private String searchKeystore;
36
37   
38   public String getSourceDomain() {
39     return sourceDomain;
40   }
41   
42   public void setSourceDomain(String sourceDomain) {
43     this.sourceDomain = sourceDomain;
44   }
45   
46   public String getSearchBaseUrl() {
47     return searchBaseUrl;
48   }
49   
50   public void setSearchBaseUrl(String searchBaseUrl) {
51     this.searchBaseUrl = searchBaseUrl;
52   }
53   
54   public String getSearchEndpoint() {
55     return searchEndpoint;
56   }
57   
58   public void setSearchEndpoint(String searchEndpoint) {
59     this.searchEndpoint = searchEndpoint;
60   }
61   
62   public String getSearchEndpointDocuments() {
63     return searchEndpointDocuments;
64   }
65   
66   public void setSearchEndpointDocuments(String searchEndpointDocuments) {
67     this.searchEndpointDocuments = searchEndpointDocuments;
68   }
69   
70   public String getSearchEntitySearchIndex() {
71     return searchEntitySearchIndex;
72   }
73   
74   public void setSearchEntitySearchIndex(String searchEntitySearchIndex) {
75     this.searchEntitySearchIndex = searchEntitySearchIndex;
76   }
77   
78   public String getSearchTopographySearchIndex() {
79     return searchTopographySearchIndex;
80   }
81   
82   public void setSearchTopographySearchIndex(String searchTopographySearchIndex) {
83     this.searchTopographySearchIndex = searchTopographySearchIndex;
84   }
85
86   public String getSearchEntityAutoSuggestIndex() {
87     return searchEntityAutoSuggestIndex;
88   }
89   
90   public void setSearchEntityAutoSuggestIndex(String autoSuggestibleSearchEntitySearchIndex) {
91     this.searchEntityAutoSuggestIndex = autoSuggestibleSearchEntitySearchIndex;
92   }
93
94   public String getSearchCertName() {
95     return searchCertName;
96   }
97   
98   public void setSearchCertName(String searchCertName) {
99     this.searchCertName = searchCertName;
100   }
101   
102   public String getSearchKeystore() {
103     return searchKeystore;
104   }
105   
106   public void setSearchKeystore(String searchKeystore) {
107     this.searchKeystore = searchKeystore;
108   }
109   
110   public String getSearchKeystorePwd() {
111     return searchKeystorePwd;
112   }
113   
114   public void setSearchKeystorePwd(String searchKeystorePwd) {
115     this.searchKeystorePwd = searchKeystorePwd;
116   }
117   
118   public String getSearchAggregationVnfIndex() {
119       return searchAggregationVnfIndex;
120   }
121   
122   public void setSearchAggregationVnfIndex(String searchAggregationVnfIndex) {
123       this.searchAggregationVnfIndex = searchAggregationVnfIndex;
124   }
125 }