router-core 1.3.0 changes
[aai/data-router.git] / src / main / java / org / onap / aai / datarouter / policy / SpikeEventPolicyConfig.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 SpikeEventPolicyConfig {
27
28   private String sourceDomain;
29   private String searchBaseUrl;
30   private String searchEndpoint;
31   private String searchEndpointDocuments;
32   private String searchCertName;
33   private String searchKeystorePwd;
34   private String searchKeystore;
35   private SchemaVersions schemaVersions;
36   private SchemaLocationsBean schemaLocationsBean;
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
71   public String getSearchCertName() {
72     return searchCertName;
73   }
74   
75   public void setSearchCertName(String searchCertName) {
76     this.searchCertName = searchCertName;
77   }
78   
79   public String getSearchKeystore() {
80     return searchKeystore;
81   }
82   
83   public void setSearchKeystore(String searchKeystore) {
84     this.searchKeystore = searchKeystore;
85   }
86   
87   public String getSearchKeystorePwd() {
88     return searchKeystorePwd;
89   }
90   
91   public void setSearchKeystorePwd(String searchKeystorePwd) {
92     this.searchKeystorePwd = searchKeystorePwd;
93   } 
94   
95   public SchemaVersions getSchemaVersions() {
96     return schemaVersions;
97   }
98   
99   public void setSchemaVersions(SchemaVersions schemaVersions) {
100     this.schemaVersions = schemaVersions;
101   }
102   
103   public SchemaLocationsBean getSchemaLocationsBean() {
104     return schemaLocationsBean;
105   }
106   
107   public void setSchemaLocationsBean(SchemaLocationsBean schemaLocationsBean) {
108     this.schemaLocationsBean = schemaLocationsBean;
109   }
110 }