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

import org.onap.sdc.dcae.composition.restmodels.ruleeditor.LogEventAction;
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 LogEventValidator implements IRuleElementValidator<LogEventAction> {

	private static LogEventValidator logEventValidator = new LogEventValidator();

	public static LogEventValidator getInstance() {
		return logEventValidator;
	}

	LogEventValidator(){}

	public boolean validate(LogEventAction action, List<ResponseFormat> errors) {
		if(!ValidationUtils.validateNotEmpty(action.getTitle())){
			errors.add(ErrConfMgr.INSTANCE.getResponseFormat(ActionStatus.MISSING_ACTION_FIELD, null, "title", action.getActionType(), action.strippedTarget()));
			return false;
		}
		return true;
	}
}