test/java/rmi/activation/Activatable/forceLogSnapshot/ForceLogSnapshot.java

Print this page




  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25  * @bug 4173960
  26  * @summary synopsis: Activatable objects cannot be restarted.
  27  * @author Laird Dornin
  28  *
  29  * @library ../../../testlibrary
  30  * @modules java.rmi/sun.rmi.registry
  31  *          java.rmi/sun.rmi.server
  32  *          java.rmi/sun.rmi.transport
  33  *          java.rmi/sun.rmi.transport.tcp

  34  * @build TestLibrary RMID ActivationLibrary
  35  *     ActivateMe ForceLogSnapshot_Stub
  36  * @run main/othervm/policy=security.policy/timeout=640 ForceLogSnapshot
  37  */
  38 
  39 import java.io.*;
  40 import java.rmi.*;
  41 import java.rmi.activation.*;
  42 import java.rmi.server.*;
  43 import java.rmi.registry.*;
  44 import java.util.*;
  45 
  46 public class ForceLogSnapshot
  47         implements ActivateMe
  48 {
  49     /** how many activatable remote objects to create to test rmid */
  50     final public static int HOW_MANY = 50;
  51     final public static int NUM_GROUPS = 4;
  52     /** cause RMID to generate a snapshot every 10th activated object */
  53     final public static int SNAPSHOT_INTERVAL = 10;




  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25  * @bug 4173960
  26  * @summary synopsis: Activatable objects cannot be restarted.
  27  * @author Laird Dornin
  28  *
  29  * @library ../../../testlibrary
  30  * @modules java.rmi/sun.rmi.registry
  31  *          java.rmi/sun.rmi.server
  32  *          java.rmi/sun.rmi.transport
  33  *          java.rmi/sun.rmi.transport.tcp
  34  *          java.base/sun.nio.ch
  35  * @build TestLibrary RMID ActivationLibrary
  36  *     ActivateMe ForceLogSnapshot_Stub
  37  * @run main/othervm/policy=security.policy/timeout=640 ForceLogSnapshot
  38  */
  39 
  40 import java.io.*;
  41 import java.rmi.*;
  42 import java.rmi.activation.*;
  43 import java.rmi.server.*;
  44 import java.rmi.registry.*;
  45 import java.util.*;
  46 
  47 public class ForceLogSnapshot
  48         implements ActivateMe
  49 {
  50     /** how many activatable remote objects to create to test rmid */
  51     final public static int HOW_MANY = 50;
  52     final public static int NUM_GROUPS = 4;
  53     /** cause RMID to generate a snapshot every 10th activated object */
  54     final public static int SNAPSHOT_INTERVAL = 10;