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