BEA Systems, Inc.

BEA WebLogic Server 9.1 API Reference


weblogic.common
Interface T3ServicesDef


public interface T3ServicesDef

The T3ServicesDef interface defines WebLogic Services. Services within WebLogic implement methods from this interface. The methods in this interface provide access to a factory for its type of service or facility. An object factory for a service or facility is used in place of a constructor (as a "virtual constructor") to allocate resources in WebLogic.

A JNDI client can obtain a T3ServicesDef object by performing a lookup on weblogic.common.T3Services as shown below:

  T3ServicesDef t3 = (T3ServicesDef)
     ctx.lookup("weblogic.common.T3Services");

Copyright © 2005 BEA Systems, Inc. All Rights Reserved.

Field Summary
static String NAME
           
 
Method Summary
 weblogic.common.AdminServicesDef admin()
          Returns access to administrative services in WebLogic.
 weblogic.io.common.IOServicesDef io()
          Returns access to IO services in WebLogic.
 weblogic.jdbc.common.JdbcServicesDef jdbc()
          Returns access to JDBC services in WebLogic.
 LogServicesDef log()
          Returns access to log file services in WebLogic.
 weblogic.common.NameServicesDef name()
          Returns access to name services in WebLogic.
 TimeServicesDef time()
          Returns access to time services in WebLogic.
 

Field Detail

NAME

public static final String NAME
See Also:
Constant Field Values
Method Detail

admin

public weblogic.common.AdminServicesDef admin()
Returns access to administrative services in WebLogic.


io

public weblogic.io.common.IOServicesDef io()
Returns access to IO services in WebLogic.


jdbc

public weblogic.jdbc.common.JdbcServicesDef jdbc()
Returns access to JDBC services in WebLogic.


log

public LogServicesDef log()
Returns access to log file services in WebLogic.


name

public weblogic.common.NameServicesDef name()
Returns access to name services in WebLogic.


time

public TimeServicesDef time()
Returns access to time services in WebLogic.


Documentation is available at
http://download.oracle.com/docs/cd/E13222_01/wls/docs91
Copyright 2005 BEA Systems Inc.