All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.tsl2.nano.service.schedule.SimpleScheduleServiceBean Maven / Gradle / Ivy

Go to download

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