Extension SDK

oracle.jdeveloper.cm
Interface ConnectionType

All Known Implementing Classes:
FtpConnectionType, IasLocalDcmConnectionType, IasRemoteDcmConnectionType, Oc4jConnectionType, OracleJdbcConnectionType, OracleLiteConnectionType, Weblogic6ConnectionType, OtherJdbcConnectionType, Weblogic7ConnectionType, JndiConnectionType, JdbcOdbcConnectionType

public interface ConnectionType

ConnectionType to become a new connection manager connection this interface must be implemented, and the class must be registered with the ConnectionManager instance.

See Also:


Method Summary
 java.lang.String getConnConfigPanelClass()
          Gets the class name of the Configuration Panel
 java.lang.String getConnectionClassName()
          Gets the class of this Connection Type
 java.lang.String getDefaultPassword()
           
 java.lang.String getDefaultUsername()
           
 java.lang.String getFactoryClass()
          Gets the class name of the ConnectionFactory
 java.lang.String getName()
          Gets the friendly name of the Connection Type
 java.lang.String getTypeName()
          Gets the internal name of the Connection Type
 java.lang.String toString()
           
 

Method Detail

getConnConfigPanelClass

public java.lang.String getConnConfigPanelClass()
Gets the class name of the Configuration Panel

getFactoryClass

public java.lang.String getFactoryClass()
Gets the class name of the ConnectionFactory

getName

public java.lang.String getName()
Gets the friendly name of the Connection Type

getTypeName

public java.lang.String getTypeName()
Gets the internal name of the Connection Type

getConnectionClassName

public java.lang.String getConnectionClassName()
Gets the class of this Connection Type

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object
Returns:
the same as getName

getDefaultUsername

public java.lang.String getDefaultUsername()

getDefaultPassword

public java.lang.String getDefaultPassword()

Extension SDK