Initial TCA commit into DCAEGEN2
[dcaegen2/analytics/tca.git] / dcae-analytics-cdap-plugins / src / main / java / org / openecomp / dcae / apod / analytics / cdap / plugins / validator / DMaaPMRSourcePluginConfigValidator.java
1 /*
2  * ===============================LICENSE_START======================================
3  *  dcae-analytics
4  * ================================================================================
5  *    Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  *  Licensed under the Apache License, Version 2.0 (the "License");
8  *  you may not use this file except in compliance with the License.
9  *   You may obtain a copy of the License at
10  *
11  *          http://www.apache.org/licenses/LICENSE-2.0
12  *
13  *  Unless required by applicable law or agreed to in writing, software
14  *  distributed under the License is distributed on an "AS IS" BASIS,
15  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  *  See the License for the specific language governing permissions and
17  *  limitations under the License.
18  *  ============================LICENSE_END===========================================
19  */
20
21 package org.openecomp.dcae.apod.analytics.cdap.plugins.validator;
22
23 import org.openecomp.dcae.apod.analytics.cdap.plugins.domain.config.dmaap.DMaaPMRSourcePluginConfig;
24 import org.openecomp.dcae.apod.analytics.common.validation.GenericValidationResponse;
25
26 /**
27  * Validates plugin config values in {@link DMaaPMRSourcePluginConfig}
28  * <p>
29  * @author Rajiv Singla . Creation Date: 1/30/2017.
30  */
31 public class DMaaPMRSourcePluginConfigValidator extends BaseDMaaPMRPluginConfigValidator<DMaaPMRSourcePluginConfig> {
32
33     private static final long serialVersionUID = 1L;
34
35     /**
36      * Validates plugin config values in {@link DMaaPMRSourcePluginConfig}
37      *
38      * @param sourcePluginConfig Source Plugin Config
39      *
40      * @return Validation response containing validation errors if any
41      */
42     @Override
43     public GenericValidationResponse<DMaaPMRSourcePluginConfig> validateAppSettings(
44             final DMaaPMRSourcePluginConfig sourcePluginConfig) {
45
46         // validate settings in BaseDMaaPMRPluginConfig
47         final GenericValidationResponse<DMaaPMRSourcePluginConfig> validationResponse =
48                 super.validateAppSettings(sourcePluginConfig);
49
50         if (sourcePluginConfig.getPollingInterval() == null) {
51             validationResponse.addErrorMessage(
52                     "port Number",
53                     "DMaaPMRSourcePluginConfig - polling interval is undefined: " + sourcePluginConfig);
54         }
55
56         return validationResponse;
57     }
58 }