router-core 1.3.0 changes
[aai/data-router.git] / src / main / java / org / onap / aai / datarouter / policy / EntityEventPolicyConfig.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 EntityEventPolicyConfig {
27
28   private String sourceDomain;
29   private String searchBaseUrl;
30   private String searchEndpoint;
31   private String searchEndpointDocuments;
32   private String searchEntitySearchIndex;
33   private String searchTopographySearchIndex;
34   private String searchEntityAutoSuggestIndex;
35   private String searchAggregationVnfIndex;
36   private String searchCertName;
37   private String searchKeystorePwd;
38   private String searchKeystore;
39   private SchemaVersions schemaVersions;
40   private SchemaLocationsBean schemaLocationsBean;
41
42   
43   public String getSourceDomain() {
44     return sourceDomain;
45   }
46   
47   public void setSourceDomain(String sourceDomain) {
48     this.sourceDomain = sourceDomain;
49   }
50   
51   public String getSearchBaseUrl() {
52     return searchBaseUrl;
53   }
54   
55   public void setSearchBaseUrl(String searchBaseUrl) {
56     this.searchBaseUrl = searchBaseUrl;
57   }
58   
59   public String getSearchEndpoint() {
60     return searchEndpoint;
61   }
62   
63   public void setSearchEndpoint(String searchEndpoint) {
64     this.searchEndpoint = searchEndpoint;
65   }
66   
67   public String getSearchEndpointDocuments() {
68     return searchEndpointDocuments;
69   }
70   
71   public void setSearchEndpointDocuments(String searchEndpointDocuments) {
72     this.searchEndpointDocuments = searchEndpointDocuments;
73   }
74   
75   public String getSearchEntitySearchIndex() {
76     return searchEntitySearchIndex;
77   }
78   
79   public void setSearchEntitySearchIndex(String searchEntitySearchIndex) {
80     this.searchEntitySearchIndex = searchEntitySearchIndex;
81   }
82   
83   public String getSearchTopographySearchIndex() {
84     return searchTopographySearchIndex;
85   }
86   
87   public void setSearchTopographySearchIndex(String searchTopographySearchIndex) {
88     this.searchTopographySearchIndex = searchTopographySearchIndex;
89   }
90
91   public String getSearchEntityAutoSuggestIndex() {
92     return searchEntityAutoSuggestIndex;
93   }
94   
95   public void setSearchEntityAutoSuggestIndex(String autoSuggestibleSearchEntitySearchIndex) {
96     this.searchEntityAutoSuggestIndex = autoSuggestibleSearchEntitySearchIndex;
97   }
98
99   public String getSearchCertName() {
100     return searchCertName;
101   }
102   
103   public void setSearchCertName(String searchCertName) {
104     this.searchCertName = searchCertName;
105   }
106   
107   public String getSearchKeystore() {
108     return searchKeystore;
109   }
110   
111   public void setSearchKeystore(String searchKeystore) {
112     this.searchKeystore = searchKeystore;
113   }
114   
115   public String getSearchKeystorePwd() {
116     return searchKeystorePwd;
117   }
118   
119   public void setSearchKeystorePwd(String searchKeystorePwd) {
120     this.searchKeystorePwd = searchKeystorePwd;
121   }
122   
123   public String getSearchAggregationVnfIndex() {
124       return searchAggregationVnfIndex;
125   }
126   
127   public void setSearchAggregationVnfIndex(String searchAggregationVnfIndex) {
128       this.searchAggregationVnfIndex = searchAggregationVnfIndex;
129   }
130   
131   public SchemaVersions getSchemaVersions() {
132     return schemaVersions;
133   }
134   
135   public void setSchemaVersions(SchemaVersions schemaVersions) {
136     this.schemaVersions = schemaVersions;
137   }
138   
139   public SchemaLocationsBean getSchemaLocationsBean() {
140     return schemaLocationsBean;
141   }
142   
143   public void setSchemaLocationsBean(SchemaLocationsBean schemaLocationsBean) {
144     this.schemaLocationsBean = schemaLocationsBean;
145   }
146 }