io.symcpe.wraith.actions.alerts.templated.TemplatedAlertAction Maven / Gradle / Ivy
/**
* Copyright 2016 Symantec Corporation.
*
* Licensed under the Apache License, Version 2.0 (the “License”);
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.symcpe.wraith.actions.alerts.templated;
import io.symcpe.wraith.Constants;
import io.symcpe.wraith.Event;
import io.symcpe.wraith.Required;
import io.symcpe.wraith.actions.Action;
/**
* Template based alert action
*
* @author ambud_sharma
*/
public class TemplatedAlertAction implements Action {
private static final long serialVersionUID = 1L;
@Required
private short actionId;
@Required
private short templateId = -1;
public TemplatedAlertAction(short actionId, short templateId) {
this.actionId = actionId;
this.templateId = templateId;
}
@Override
public Event actOnEvent(Event inputEvent) {
inputEvent.getHeaders().put(Constants.FIELD_ALERT_TEMPLATE_ID, templateId);
return inputEvent;
}
@Override
public ACTION_TYPE getActionType() {
return ACTION_TYPE.TEMPLATED_ALERT;
}
@Override
public short getActionId() {
return actionId;
}
@Override
public void setActionId(short actionId) {
this.actionId = actionId;
}
/**
* @return the templateId
*/
public short getTemplateId() {
return templateId;
}
/**
* @param templateId the templateId to set
*/
public void setTemplateId(short templateId) {
this.templateId = templateId;
}
}