summaryrefslogtreecommitdiffstats
path: root/dcaedt_be/src/main/java/org/onap/sdc/dcae/rule/editor/validators/HpMetricValidator.java
blob: 7bd382c02ffcf67589d11e413beff2310f97a63d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package org.onap.sdc.dcae.rule.editor.validators;

import org.onap.sdc.dcae.composition.restmodels.ruleeditor.HpMetricAction;
import org.onap.sdc.dcae.errormng.ActionStatus;
import org.onap.sdc.dcae.errormng.ErrConfMgr;
import org.onap.sdc.dcae.errormng.ResponseFormat;
import org.onap.sdc.dcae.rule.editor.utils.ValidationUtils;

import java.util.List;

public class HpMetricValidator extends BaseActionValidator<HpMetricAction> {

	private static HpMetricValidator hpMetricValidator = new HpMetricValidator();

	public static HpMetricValidator getInstance() {
		return hpMetricValidator;
	}

	private HpMetricValidator(){}

	@Override
	public boolean validate(HpMetricAction action, List<ResponseFormat> errors) {
		if(!ValidationUtils.validateNotEmpty(action.getSelectedHpMetric())){
			errors.add(ErrConfMgr.INSTANCE.getResponseFormat(ActionStatus.MISSING_ACTION_FIELD, null, "HP Metric", action.getActionType(), action.strippedTarget()));
			return false;
		}
		return super.validate(action, errors);
	}
}