Update license date and text
[aai/data-router.git] / src / main / java / org / onap / aai / datarouter / policy / SpikeEntityEventPolicyConfig.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 SpikeEntityEventPolicyConfig {
24
25   private String sourceDomain;
26   private String searchBaseUrl;
27   private String searchEndpoint;
28   private String searchEndpointDocuments;
29   private String searchEntitySearchIndex;
30   private String searchCertName;
31   private String searchKeystorePwd;
32   private String searchKeystore;
33
34   
35   public String getSourceDomain() {
36     return sourceDomain;
37   }
38   
39   public void setSourceDomain(String sourceDomain) {
40     this.sourceDomain = sourceDomain;
41   }
42   
43   public String getSearchBaseUrl() {
44     return searchBaseUrl;
45   }
46   
47   public void setSearchBaseUrl(String searchBaseUrl) {
48     this.searchBaseUrl = searchBaseUrl;
49   }
50   
51   public String getSearchEndpoint() {
52     return searchEndpoint;
53   }
54   
55   public void setSearchEndpoint(String searchEndpoint) {
56     this.searchEndpoint = searchEndpoint;
57   }
58   
59   public String getSearchEndpointDocuments() {
60     return searchEndpointDocuments;
61   }
62   
63   public void setSearchEndpointDocuments(String searchEndpointDocuments) {
64     this.searchEndpointDocuments = searchEndpointDocuments;
65   }
66   
67   public String getSearchEntitySearchIndex() {
68     return searchEntitySearchIndex;
69   }
70   
71   public void setSearchEntitySearchIndex(String searchEntitySearchIndex) {
72     this.searchEntitySearchIndex = searchEntitySearchIndex;
73   }
74   public String getSearchCertName() {
75     return searchCertName;
76   }
77   
78   public void setSearchCertName(String searchCertName) {
79     this.searchCertName = searchCertName;
80   }
81   
82   public String getSearchKeystore() {
83     return searchKeystore;
84   }
85   
86   public void setSearchKeystore(String searchKeystore) {
87     this.searchKeystore = searchKeystore;
88   }
89   
90   public String getSearchKeystorePwd() {
91     return searchKeystorePwd;
92   }
93   
94   public void setSearchKeystorePwd(String searchKeystorePwd) {
95     this.searchKeystorePwd = searchKeystorePwd;
96   } 
97 }