/* * Copyright 2005 Red Hat, Inc. and/or its affiliates. * * 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 org.drools.core.event; import org.kie.api.event.rule.*; import org.kie.api.event.rule.AgendaGroupPoppedEvent; import org.kie.api.event.rule.AgendaGroupPushedEvent; import org.kie.api.event.rule.RuleFlowGroupActivatedEvent; import org.kie.api.event.rule.RuleFlowGroupDeactivatedEvent; public class DefaultAgendaEventListener implements AgendaEventListener { public DefaultAgendaEventListener() { // intentionally left blank } public void matchCreated(MatchCreatedEvent event) { // intentionally left blank } public void matchCancelled(MatchCancelledEvent event) { // intentionally left blank } public void beforeMatchFired(BeforeMatchFiredEvent event) { // intentionally left blank } public void afterMatchFired(AfterMatchFiredEvent event) { // intentionally left blank } public void agendaGroupPopped(AgendaGroupPoppedEvent event) { // intentionally left blank } public void agendaGroupPushed(AgendaGroupPushedEvent event) { // intentionally left blank } public void beforeRuleFlowGroupActivated(RuleFlowGroupActivatedEvent event) { // intentionally left blank } public void afterRuleFlowGroupActivated(RuleFlowGroupActivatedEvent event) { // intentionally left blank } public void beforeRuleFlowGroupDeactivated(RuleFlowGroupDeactivatedEvent event) { // intentionally left blank } public void afterRuleFlowGroupDeactivated(RuleFlowGroupDeactivatedEvent event) { // intentionally left blank } }