@Deprecated
public interface T3StartupDef
A class that implements this interface and is registered in WebLogic's config.xml file will be automatically launched when the WebLogic Server starts up, and its startup method will be called. For more information on registering a startup class, check the Administrators' guide document, "Starting and Stopping WebLogic Servers."
Any class that implements this interface must have a public default constructor. For example, class "foo" must have a contstructor like:
public foo() { }
Modifier and Type | Method and Description |
---|---|
void |
setServices(T3ServicesDef services)
Deprecated.
|
java.lang.String |
startup(java.lang.String name,
java.util.Hashtable ht)
Deprecated.
|
@Deprecated java.lang.String startup(java.lang.String name, java.util.Hashtable ht) throws java.lang.Exception
name
- Virtual name by which the class is registered
as a startupClass in the config.xml
fileht
- A Hashtable that is made up of the name-value
pairs supplied from the startupArgs propertyjava.lang.Exception
- if there is an error@Deprecated void setServices(T3ServicesDef services)