Oracle Fusion Middleware
Oracle WebLogic Server MBean Javadoc
12c Release 1 (12.1.1)

Part Number E24395-02

weblogic.management.configuration
Interface WTCPasswordMBean

All Superinterfaces:
ConfigurationMBean

public interface WTCPasswordMBean
extends ConfigurationMBean

This interface provides access to the WTC password configuration attributes. The methods defined herein are applicable for WTC configuration at the WLS domain level.

Deprecation of MBeanHome and Type-Safe Interfaces

This is a type-safe interface for a WebLogic Server MBean, which you can import into your client classes and access through weblogic.management.MBeanHome. As of 9.0, the MBeanHome interface and all type-safe interfaces for WebLogic Server MBeans are deprecated. Instead, client classes that interact with WebLogic Server MBeans should use standard JMX design patterns in which clients use the javax.management.MBeanServerConnection interface to discover MBeans, attributes, and attribute types at runtime. For more information, see "Developing Manageable Applications with JMX."

Since:
7.0.0.0
Access limited to the following security roles:
Deployer

Field Summary
 
Fields inherited from interface weblogic.management.configuration.ConfigurationMBean
DEFAULT_EMPTY_BYTE_ARRAY
 
Method Summary
 String getLocalAccessPoint()
          The name of the local access point to which this password applies.
 String getLocalPassword()
          The local password used to authenticate connections between the local access point and the remote access point.
 String getLocalPasswordIV()
          The initialization vector used to encrypt the local password.
 String getRemoteAccessPoint()
          The name of the remote access point to which this password applies.
 String getRemotePassword()
          The remote password used to authenticate connections between the local access point and remote access point.
 String getRemotePasswordIV()
          The initialization vector used to encrypt the remote password.
 void setLocalAccessPoint(String LocalAccessPoint)
          Sets the value of the LocalAccessPoint attribute.
 void setLocalPassword(String LocalPasswd)
          Sets the value of the LocalPassword attribute.
 void setLocalPasswordIV(String LocalIV)
          Sets the value of the LocalPasswordIV attribute.
 void setRemoteAccessPoint(String RemoteAccessPoint)
          Sets the value of the RemoteAccessPoint attribute.
 void setRemotePassword(String RemotePasswd)
          Sets the value of the RemotePassword attribute.
 void setRemotePasswordIV(String RemoteIV)
          Sets the value of the RemotePasswordIV attribute.
 
Methods inherited from interface weblogic.management.configuration.ConfigurationMBean
freezeCurrentValue, getName, getNotes, isSet, restoreDefaultValue, setComments, setDefaultedMBean, setName, setNotes, setPersistenceEnabled, unSet
 

Method Detail

setLocalAccessPoint

void setLocalAccessPoint(String LocalAccessPoint)
                         throws InvalidAttributeValueException

Sets the value of the LocalAccessPoint attribute.

Parameters:
LocalAccessPoint - the name for the local domain access point
Throws:
InvalidAttributeValueException
See Also:
WTCPasswordMBean.getLocalAccessPoint()
This method can NOT set a null value.
Default Value:
"myLAP"

getLocalAccessPoint

String getLocalAccessPoint()

The name of the local access point to which this password applies.

Returns:
The localAccessPoint value

setRemoteAccessPoint

void setRemoteAccessPoint(String RemoteAccessPoint)
                          throws InvalidAttributeValueException

Sets the value of the RemoteAccessPoint attribute.

Parameters:
RemoteAccessPoint - the name for the remote domain access point
Throws:
InvalidAttributeValueException
See Also:
WTCPasswordMBean.getRemoteAccessPoint()
This method can NOT set a null value.
Default Value:
"myRAP"

getRemoteAccessPoint

String getRemoteAccessPoint()

The name of the remote access point to which this password applies.

Returns:
The remoteAccessPoint value

setLocalPasswordIV

void setLocalPasswordIV(String LocalIV)
                        throws InvalidAttributeValueException

Sets the value of the LocalPasswordIV attribute.

Parameters:
LocalIV - the encrypted local interface vector used by this object
Throws:
InvalidAttributeValueException
See Also:
WTCPasswordMBean.getLocalPasswordIV()
This method can NOT set a null value.
Default Value:
"myLPWDIV"

getLocalPasswordIV

String getLocalPasswordIV()

The initialization vector used to encrypt the local password.

Returns:
The localPasswordIV value

setLocalPassword

void setLocalPassword(String LocalPasswd)
                      throws InvalidAttributeValueException

Sets the value of the LocalPassword attribute.

Parameters:
LocalPasswd - the encrypted local password string
Throws:
InvalidAttributeValueException
See Also:
WTCPasswordMBean.getLocalPassword()
This method can NOT set a null value.
Default Value:
"myLPWD"

getLocalPassword

String getLocalPassword()

The local password used to authenticate connections between the local access point and the remote access point.

Note: This password is used to authenticate connections between the local Tuxedo access point identified by LocalAccessPoint and the remote Tuxedo access point identified by RemoteAccessPoint.

Returns:
The localPassword value

setRemotePasswordIV

void setRemotePasswordIV(String RemoteIV)
                         throws InvalidAttributeValueException

Sets the value of the RemotePasswordIV attribute.

Parameters:
RemoteIV - encrypted remote interface vector used by this object
Throws:
InvalidAttributeValueException
See Also:
WTCPasswordMBean.getRemotePasswordIV()
This method can NOT set a null value.
Default Value:
"myRPWDIV"

getRemotePasswordIV

String getRemotePasswordIV()

The initialization vector used to encrypt the remote password.

Returns:
The remotePasswordIV value

setRemotePassword

void setRemotePassword(String RemotePasswd)
                       throws InvalidAttributeValueException

Sets the value of the RemotePassword attribute.

Parameters:
RemotePasswd - the encrypted local password string
Throws:
InvalidAttributeValueException
See Also:
WTCPasswordMBean.getRemotePassword()
This method can NOT set a null value.
Default Value:
"myRPWD"

getRemotePassword

String getRemotePassword()

The remote password used to authenticate connections between the local access point and remote access point.

Note: This password is used to authenticate connections between the local Tuxedo access point identified by LocalAccessPoint and the remote Tuxedo access point identified by RemoteAccessPoint.

Returns:
The remotePassword value

Copyright 1996, 2011, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Oracle Fusion Middleware
Oracle WebLogic Server MBean Javadoc
12c Release 1 (12.1.1)

Part Number E24395-02