Process VNF event from spike
[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 public class SpikeEventPolicyConfig {
24
25   private String sourceDomain;
26   private String searchBaseUrl;
27   private String searchEndpoint;
28   private String searchEndpointDocuments;
29   private String searchCertName;
30   private String searchKeystorePwd;
31   private String searchKeystore;
32
33   
34   public String getSourceDomain() {
35     return sourceDomain;
36   }
37   
38   public void setSourceDomain(String sourceDomain) {
39     this.sourceDomain = sourceDomain;
40   }
41   
42   public String getSearchBaseUrl() {
43     return searchBaseUrl;
44   }
45   
46   public void setSearchBaseUrl(String searchBaseUrl) {
47     this.searchBaseUrl = searchBaseUrl;
48   }
49   
50   public String getSearchEndpoint() {
51     return searchEndpoint;
52   }
53   
54   public void setSearchEndpoint(String searchEndpoint) {
55     this.searchEndpoint = searchEndpoint;
56   }
57   
58   public String getSearchEndpointDocuments() {
59     return searchEndpointDocuments;
60   }
61   
62   public void setSearchEndpointDocuments(String searchEndpointDocuments) {
63     this.searchEndpointDocuments = searchEndpointDocuments;
64   }
65   
66
67   public String getSearchCertName() {
68     return searchCertName;
69   }
70   
71   public void setSearchCertName(String searchCertName) {
72     this.searchCertName = searchCertName;
73   }
74   
75   public String getSearchKeystore() {
76     return searchKeystore;
77   }
78   
79   public void setSearchKeystore(String searchKeystore) {
80     this.searchKeystore = searchKeystore;
81   }
82   
83   public String getSearchKeystorePwd() {
84     return searchKeystorePwd;
85   }
86   
87   public void setSearchKeystorePwd(String searchKeystorePwd) {
88     this.searchKeystorePwd = searchKeystorePwd;
89   } 
90 }