iservicetimersessionremote.java

来自「一个免费的CA,基于EJB平台的,老师叫我们测试,现把之共享出来让大家参考」· Java 代码 · 共 42 行

JAVA
42
字号
/* * Generated by XDoclet - Do not edit! */package org.ejbca.core.ejb.services;/** * Remote interface for ServiceTimerSession. */public interface IServiceTimerSessionRemote   extends javax.ejb.EJBObject{   /**    * Loads and activates all the services from database that are active    * @throws EJBException if a communication or other error occurs.    */   public void load(  )      throws java.rmi.RemoteException;   /**    * Cancels all existing timers a unload    * @throws EJBException if a communication or other error occurs.    */   public void unload(  )      throws java.rmi.RemoteException;   /**    * Adds a timer to the bean, and cancels all existing timeouts for this id.    * @param id the id of the timer    * @throws EJBException if a communication or other error occurs.    */   public void addTimer( long interval,java.lang.Integer id )      throws java.rmi.RemoteException;   /**    * cancels a timer with the given Id    * @throws EJBException if a communication or other error occurs.    */   public void cancelTimer( java.lang.Integer id )      throws java.rmi.RemoteException;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?