Merge "Not logged or rethrow this exception."
[aai/data-router.git] / src / main / java / org / openecomp / datarouter / policy / EntityEventPolicyConfig.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017 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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  */
23 package org.openecomp.datarouter.policy;
24
25 public class EntityEventPolicyConfig {
26
27   private String sourceDomain;
28   private String searchBaseUrl;
29   private String searchEndpoint;
30   private String searchEndpointDocuments;
31   private String searchEntitySearchIndex;
32   private String searchTopographySearchIndex;
33   private String searchEntityAutoSuggestIndex;
34   private String searchAggregationVnfIndex;
35   private String searchCertName;
36   private String searchKeystorePwd;
37   private String searchKeystore;
38
39   
40   public String getSourceDomain() {
41     return sourceDomain;
42   }
43   
44   public void setSourceDomain(String sourceDomain) {
45     this.sourceDomain = sourceDomain;
46   }
47   
48   public String getSearchBaseUrl() {
49     return searchBaseUrl;
50   }
51   
52   public void setSearchBaseUrl(String searchBaseUrl) {
53     this.searchBaseUrl = searchBaseUrl;
54   }
55   
56   public String getSearchEndpoint() {
57     return searchEndpoint;
58   }
59   
60   public void setSearchEndpoint(String searchEndpoint) {
61     this.searchEndpoint = searchEndpoint;
62   }
63   
64   public String getSearchEndpointDocuments() {
65     return searchEndpointDocuments;
66   }
67   
68   public void setSearchEndpointDocuments(String searchEndpointDocuments) {
69     this.searchEndpointDocuments = searchEndpointDocuments;
70   }
71   
72   public String getSearchEntitySearchIndex() {
73     return searchEntitySearchIndex;
74   }
75   
76   public void setSearchEntitySearchIndex(String searchEntitySearchIndex) {
77     this.searchEntitySearchIndex = searchEntitySearchIndex;
78   }
79   
80   public String getSearchTopographySearchIndex() {
81     return searchTopographySearchIndex;
82   }
83   
84   public void setSearchTopographySearchIndex(String searchTopographySearchIndex) {
85     this.searchTopographySearchIndex = searchTopographySearchIndex;
86   }
87
88   public String getSearchEntityAutoSuggestIndex() {
89     return searchEntityAutoSuggestIndex;
90   }
91   
92   public void setSearchEntityAutoSuggestIndex(String autoSuggestibleSearchEntitySearchIndex) {
93     this.searchEntityAutoSuggestIndex = autoSuggestibleSearchEntitySearchIndex;
94   }
95
96   public String getSearchCertName() {
97     return searchCertName;
98   }
99   
100   public void setSearchCertName(String searchCertName) {
101     this.searchCertName = searchCertName;
102   }
103   
104   public String getSearchKeystore() {
105     return searchKeystore;
106   }
107   
108   public void setSearchKeystore(String searchKeystore) {
109     this.searchKeystore = searchKeystore;
110   }
111   
112   public String getSearchKeystorePwd() {
113     return searchKeystorePwd;
114   }
115   
116   public void setSearchKeystorePwd(String searchKeystorePwd) {
117     this.searchKeystorePwd = searchKeystorePwd;
118   }
119   
120   public String getSearchAggregationVnfIndex() {
121       return searchAggregationVnfIndex;
122   }
123   
124   public void setSearchAggregationVnfIndex(String searchAggregationVnfIndex) {
125       this.searchAggregationVnfIndex = searchAggregationVnfIndex;
126   }
127 }