summaryrefslogtreecommitdiffstats
path: root/dcaedt_be/src/main/java/org/onap/sdc/dcae/rule/editor/validators/ClearActionValidator.java
blob: 8be49b569937fb0f8d93aa1ef2cac8a6758def4b (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
package org.onap.sdc.dcae.rule.editor.validators;

import org.onap.sdc.dcae.composition.restmodels.ruleeditor.UnaryFieldAction;
import org.onap.sdc.dcae.errormng.ActionStatus;
import org.onap.sdc.dcae.errormng.ErrConfMgr;
import org.onap.sdc.dcae.errormng.ResponseFormat;

import java.util.List;

public class ClearActionValidator implements IRuleElementValidator<UnaryFieldAction> {

	private static ClearActionValidator clearActionValidator = new ClearActionValidator();

	public static ClearActionValidator getInstance() {
		return clearActionValidator;
	}

	private ClearActionValidator(){}

	public boolean validate(UnaryFieldAction action, List<ResponseFormat> errors) {
		if(action.getFromValues().isEmpty()) {
			errors.add(ErrConfMgr.INSTANCE.getResponseFormat(ActionStatus.MISSING_ACTION_FIELD, null, "from", action.getActionType(), action.strippedTarget()));
			return false;
		}
		return true;
	}
}