001/* 002 * JPPF. 003 * Copyright (C) 2005-2018 JPPF Team. 004 * http://www.jppf.org 005 * 006 * Licensed under the Apache License, Version 2.0 (the "License"); 007 * you may not use this file except in compliance with the License. 008 * You may obtain a copy of the License at 009 * 010 * http://www.apache.org/licenses/LICENSE-2.0 011 * 012 * Unless required by applicable law or agreed to in writing, software 013 * distributed under the License is distributed on an "AS IS" BASIS, 014 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 015 * See the License for the specific language governing permissions and 016 * limitations under the License. 017 */ 018 019package org.jppf.node.screensaver; 020 021import org.jppf.node.event.*; 022 023/** 024 * An abstract adapter class for receiving node events. The methods in this class are empty. 025 * This class exists as convenience, to be overriden for creating listener objects, instead of 026 * implementing the {@link NodeLifeCycleListener} and {@link TaskExecutionListener} interfaces. 027 * @author Laurent Cohen 028 * @since 4.0 029 */ 030public abstract class NodeIntegrationAdapter extends org.jppf.node.event.NodeIntegrationAdapter<JPPFScreenSaver> { 031 @Override 032 public void taskExecuted(final TaskExecutionEvent event) { 033 } 034 035 @Override 036 public void taskNotification(final TaskExecutionEvent event) { 037 } 038}