router-core 1.3.0 changes
[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 import org.onap.aai.setup.SchemaLocationsBean;
24 import org.onap.aai.setup.SchemaVersions;
25
26 public class SpikeEntityEventPolicyConfig {
27
28   private String sourceDomain;
29   private String searchBaseUrl;
30   private String searchEndpoint;
31   private String searchEndpointDocuments;
32   private String searchEntitySearchIndex;
33   private String searchCertName;
34   private String searchKeystorePwd;
35   private String searchKeystore;
36   private SchemaVersions schemaVersions;
37   private SchemaLocationsBean schemaLocationsBean;
38   
39   public String getSourceDomain() {
40     return sourceDomain;
41   }
42   
43   public void setSourceDomain(String sourceDomain) {
44     this.sourceDomain = sourceDomain;
45   }
46   
47   public String getSearchBaseUrl() {
48     return searchBaseUrl;
49   }
50   
51   public void setSearchBaseUrl(String searchBaseUrl) {
52     this.searchBaseUrl = searchBaseUrl;
53   }
54   
55   public String getSearchEndpoint() {
56     return searchEndpoint;
57   }
58   
59   public void setSearchEndpoint(String searchEndpoint) {
60     this.searchEndpoint = searchEndpoint;
61   }
62   
63   public String getSearchEndpointDocuments() {
64     return searchEndpointDocuments;
65   }
66   
67   public void setSearchEndpointDocuments(String searchEndpointDocuments) {
68     this.searchEndpointDocuments = searchEndpointDocuments;
69   }
70   
71   public String getSearchEntitySearchIndex() {
72     return searchEntitySearchIndex;
73   }
74   
75   public void setSearchEntitySearchIndex(String searchEntitySearchIndex) {
76     this.searchEntitySearchIndex = searchEntitySearchIndex;
77   }
78   public String getSearchCertName() {
79     return searchCertName;
80   }
81   
82   public void setSearchCertName(String searchCertName) {
83     this.searchCertName = searchCertName;
84   }
85   
86   public String getSearchKeystore() {
87     return searchKeystore;
88   }
89   
90   public void setSearchKeystore(String searchKeystore) {
91     this.searchKeystore = searchKeystore;
92   }
93   
94   public String getSearchKeystorePwd() {
95     return searchKeystorePwd;
96   }
97   
98   public void setSearchKeystorePwd(String searchKeystorePwd) {
99     this.searchKeystorePwd = searchKeystorePwd;
100   } 
101   
102   public SchemaVersions getSchemaVersions() {
103     return schemaVersions;
104   }
105   
106   public void setSchemaVersions(SchemaVersions schemaVersions) {
107     this.schemaVersions = schemaVersions;
108   }
109   
110   public SchemaLocationsBean getSchemaLocationsBean() {
111     return schemaLocationsBean;
112   }
113   
114   public void setSchemaLocationsBean(SchemaLocationsBean schemaLocationsBean) {
115     this.schemaLocationsBean = schemaLocationsBean;
116   }
117 }