de.tsl2.nano.service.schedule.SimpleScheduleServiceBean Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tsl2.nano.serviceaccess Show documentation
Show all versions of tsl2.nano.serviceaccess Show documentation
TSL2 JEE Service Access (Generic Services for Entity Access, JEE File-System-Connector, Generic Featuring, Job-Scheduling, BeanContainer, Batch, Comfortable Bean Query Definitions, JAAS, Authentification, Authorization, )
The newest version!
/*
* File: $HeadURL$
* Id : $Id$
*
* created by: Thomas Schneider
* created on: Jan 11, 2012
*
* Copyright: (c) Thomas Schneider 2012, all rights reserved
*/
package de.tsl2.nano.service.schedule;
import java.io.Serializable;
import javax.ejb.Singleton;
/**
* implementation of {@link IJobScheduleLocalService} to call {@link Runnable}s
*
* @author Thomas Schneider, Thomas Schneider
* @version $Revision$
*/
@Singleton
public class SimpleScheduleServiceBean extends AbstractJobScheduleServiceBean {
/**
* {@inheritDoc}
*/
@Override
protected void run(Runnable runnable, Serializable context) {
runnable.run();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy