Skip navigation links

Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.2.1)

Part Number E55141-01
P4 Change 1723563 on 2015/10/09


weblogic.management.configuration
Interface LifecycleManagerEndPointMBean

All Superinterfaces:
ConfigurationMBean, DescriptorBean, DynamicMBean, MBeanRegistration, NotificationBroadcaster, SettableBean, WebLogicMBean

public interface LifecycleManagerEndPointMBean
extends ConfigurationMBean

LifecycleManagerEndPointMBean maintains the information necessary to locate and interact with an MT LifecycleManager instance associated with this domain. This information is used by WebLogic Server components to share configuration and runtime changes in a broader context. LifecycleManager instances may either be local or remote to this domain. User credentials may be configured to support authentication, especially important when interaction with a remote domain.

Since:
12.2.1.0

Field Summary

 

Fields inherited from interface weblogic.management.configuration.ConfigurationMBean
DEFAULT_EMPTY_BYTE_ARRAY

 

Method Summary
abstract  byte[] getPasswordEncrypted()
          Get the encrypted password
abstract  String getRuntimeName()
          Returns the runtime name for this WebLogic Server domain.
abstract  String getURL()
          Returns the URL for the root REST resource for the LifecycleManager instance.
abstract  String getUsername()
          The user name that will be passed when opening a connection to a LifecycleManager instance (specified by the URL value for this endpoint).
abstract  boolean isEnabled()
          Returns true if this LifecycleManager endpoint configuration is active and should be used when a WebLogic Server component needs to share a configuration change.
abstract  void setEnabled(boolean enabled)
          Enable this LifecycleManager endpoint.
abstract  void setPassword(String password)
          Set the password to be specified when opening a connection to a LifecycleManager cd ..instance (specified by the URL value for this endpoint).
abstract  void setRuntimeName(String runtimeName)
          Changes the runtime name for this Weblogic Server domain from the perspective of the LifecycleManager instance.
abstract  void setURL(String url)
          Changes the URL for the root REST resource for the LifecycleManager instance.
abstract  void setUsername(String user)
          Change the name of the user passed when authentication to a LifecycleManager instance.

 

Methods inherited from interface weblogic.management.configuration.ConfigurationMBean
freezeCurrentValue, getId, getInheritedProperties, getName, getNotes, isDynamicallyCreated, isInherited, isSet, restoreDefaultValue, setComments, setDefaultedMBean, setName, setNotes, setPersistenceEnabled, unSet

 

Methods inherited from interface weblogic.management.WebLogicMBean
getMBeanInfo, getObjectName, getParent, getType, isCachingDisabled, isRegistered, setParent

 

Methods inherited from interface javax.management.DynamicMBean
getAttribute, getAttributes, invoke, setAttribute, setAttributes

 

Methods inherited from interface javax.management.MBeanRegistration
postDeregister, postRegister, preDeregister, preRegister

 

Methods inherited from interface javax.management.NotificationBroadcaster
addNotificationListener, getNotificationInfo, removeNotificationListener

 

Methods inherited from interface weblogic.descriptor.DescriptorBean
addPropertyChangeListener, createChildCopyIncludingObsolete, getParentBean, isEditable, removePropertyChangeListener

 

Method Detail

isEnabled

boolean isEnabled()
Returns true if this LifecycleManager endpoint configuration is active and should be used when a WebLogic Server component needs to share a configuration change.
Returns:
true if LCM feature is enabled.

setEnabled

void setEnabled(boolean enabled)
Enable this LifecycleManager endpoint.
Parameters:
enabled - Enables the endpoint configuration if true.

getURL

String getURL()
Returns the URL for the root REST resource for the LifecycleManager instance. For example, http://localhost:7001/lifecycle/12.2.1.0/
Returns:
the URL of the LifecycleManager REST resource as a string

setURL

void setURL(String url)
Changes the URL for the root REST resource for the LifecycleManager instance.
Parameters:
URL -

getRuntimeName

String getRuntimeName()
Returns the runtime name for this WebLogic Server domain. This name can be used to override the domain name of the local domain from the perspective of LifecycleManager.
Returns:
the runtime name as a string

setRuntimeName

void setRuntimeName(String runtimeName)
Changes the runtime name for this Weblogic Server domain from the perspective of the LifecycleManager instance.
Parameters:
runtimeName -

getUsername

String getUsername()
The user name that will be passed when opening a connection to a LifecycleManager instance (specified by the URL value for this endpoint). If not set, then no user name will be specified when establishing an connection.
Returns:
the user name

setUsername

void setUsername(String user)
Change the name of the user passed when authentication to a LifecycleManager instance.
Parameters:
user - the user name

setPassword

void setPassword(String password)
                 throws InvalidAttributeValueException
Set the password to be specified when opening a connection to a LifecycleManager cd ..instance (specified by the URL value for this endpoint). If not set, then no password will be specified when establishing an connection.
Parameters:
password -
Throws:
InvalidAttributeValueException
See Also:
LifecycleManagerEndPointMBean.getPassword(), #setEncryptedPassword(byte[])

getPasswordEncrypted

byte[] getPasswordEncrypted()
Get the encrypted password
Returns:
the encrypted password

Skip navigation links

Copyright 1996, 2015, 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
Java API Reference for Oracle WebLogic Server
12c (12.2.1)

Part Number E55141-01
P4 Change 1723563 on 2015/10/09