Name

ActivationGroupDesc

Synopsis

An ActivationGroupDesc contains the information needed to create a new activation group. It includes the class that should be used to construct the group object, a codebase that can be used to find the class description, if necessary, and a MarshalledObject containing any additional initialization information required by your group. In addition, the constructors allow you to specify a Properties list that will override any default runtime properties in the Java VM for the group, and a CommandEnvironment object which allows you to customize the Java executable that is executed to start the group’s VM, and its command-line arguments.

                  
public final class ActivationGroupDesc implements Serializable {
// Public Constructors
   public ActivationGroupDesc(java.util.Properties overrides, 
        ActivationGroupDesc.CommandEnvironment cmd);  
   public ActivationGroupDesc(String className, 
        String location, MarshalledObject data, 
        java.util.Properties overrides, 
        ActivationGroupDesc.CommandEnvironment cmd);  
// Inner Classes

           public static class CommandEnvironment implements Serializable; 
// Property Accessor Methods (by property name)
   public String getClassName();  
   public ActivationGroupDesc.CommandEnvironment getCommandEnvironment(
        );  
   public MarshalledObject getData();  
   public String getLocation();  
   public java.util.Properties getPropertyOverrides();  
// Public Methods Overriding ...

Get Java Enterprise in a Nutshell, Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.