javax.management.DynamicMBean
, javax.management.MBeanRegistration
, javax.management.NotificationBroadcaster
, RuntimeMBean
, WebLogicMBean
@Deprecated public interface ConsoleRuntimeMBean extends RuntimeMBean
Runtime services for the console.
Modifier and Type | Method | Description |
---|---|---|
java.lang.String |
getDefaultPageURL(java.lang.String[] context,
java.lang.String perspective) |
Deprecated.
Gets the URL for the default page of an object.
|
java.lang.String[] |
getDefaultPageURLs(java.lang.String[][] contexts,
java.lang.String perspective) |
Deprecated.
Gets the URLs for the default pages for a set of objects.
|
java.lang.String[] |
getDefaultPageURLs(java.lang.String[][] contexts,
java.lang.String[] perspectives) |
Deprecated.
Gets the URLs for the default pages for a set of objects.
|
java.lang.String |
getHomePageURL() |
Deprecated.
Gets the URL for the console's home page
|
java.lang.String[] |
getObjectNameContext(java.lang.String objectName) |
Deprecated.
Gets a context for a WLS mbean.
|
java.lang.String |
getSpecificPageURL(java.lang.String page,
java.lang.String[] context) |
Deprecated.
Gets the URL for a specific console page.
|
java.lang.String[] |
getSpecificPageURLs(java.lang.String[] pages,
java.lang.String[][] contexts) |
Deprecated.
Gets the URLs for a set of specific console pages.
|
java.lang.String[] |
getSpecificPageURLs(java.lang.String page,
java.lang.String[][] contexts) |
Deprecated.
Gets the URLs for a set of specific console page.
|
boolean |
isEnabled() |
Deprecated.
Is the console enabled?
|
getAttribute, getAttributes, invoke, setAttribute, setAttributes
postDeregister, postRegister, preRegister
addNotificationListener, getNotificationInfo, removeNotificationListener
addPropertyChangeListener, removePropertyChangeListener
getMBeanInfo, getName, getObjectName, getParent, getType, isCachingDisabled, isRegistered, setName, setParent
boolean isEnabled()
java.lang.String getHomePageURL()
java.lang.String getDefaultPageURL(java.lang.String[] context, java.lang.String perspective)
context
- Identifies the object the page should display or manage.
Most pages display or manage WLS mbeans (such as a server
or cluster). For them, call "getObjectNameContext", passing
in the JMX object name, to get the context to pass to this
method.
See the console programmers' guide for more information
on contexts.perspective
- Specifies which kind of default page to return
(e.g. configuration or monitoring).
Pass in null to get the default page for the object.
See the console programmers' guide for more information on
perspectives.java.lang.IllegalArgumentException
- if context is null or emptygetObjectNameContext(java.lang.String)
java.lang.String[] getDefaultPageURLs(java.lang.String[][] contexts, java.lang.String perspective)
contexts
- An array of contexts identifying the
object each page should display or manage.perspective
- Specifies which kind of default page to return
for all of the pages.java.lang.IllegalArgumentException
- if contexts is null, or if there
is a problem with the information for any of the pages
(e.g. contexts[2] is null or an empty string).
The returned array of URLs parallels the contexts array.
For example, return[1] contains the result for contexts[1].getDefaultPageURL(java.lang.String[], java.lang.String)
java.lang.String[] getDefaultPageURLs(java.lang.String[][] contexts, java.lang.String[] perspectives)
contexts
- An array of contexts identifying the
object each page should display or manage.perspectives
- An array of perspectives identifying
which kind of default page to return for each object.java.lang.IllegalArgumentException
- if contexts or perspectives is null,
contexts and perspectives don't have the same length, or if there is a
problem with the information for any of the pages
(e.g. contexts[2] is null or an empty string).
The contexts and perspecitives arrays are parallel arrays specifying
each desired page. They must be the same length.
For example, contexts[1] and perspectives[1] are used to indicate
the information needed to compute the URL for the second page.
Similarly, the returned array of URLs parallels the contexts and
perspectives arrays. For example, return[1] contains the result
for contexts[1]/perspectives[1].getDefaultPageURL(java.lang.String[], java.lang.String)
java.lang.String getSpecificPageURL(java.lang.String page, java.lang.String[] context)
page
- The portal page label of the desired console page.context
- Identifies the object the page should display or manage.
Most pages display or manage WLS mbeans (such as a server
or cluster). For them, call "getObjectNameContext", passing
in the JMX object name, to get the context to pass to this
method.
See the console programmers' guide for more information
on contexts.java.lang.IllegalArgumentException
- if page is null or emptygetDefaultPageURL(java.lang.String[], java.lang.String)
java.lang.String[] getSpecificPageURLs(java.lang.String page, java.lang.String[][] contexts)
page
- The portal page label of the desired console pages.contexts
- An array of contexts identifying the
object each page should display or manage.java.lang.IllegalArgumentException
- if page is null or empty,
if contexts is null, or if there is a problem with the information
for any of the pages (e.g. pages[2] is null or an empty string).
The returned array of URLs parallels the contexts array. For
example, return[1] contains the result for pages[1]/contexts[1].getSpecificPageURL(java.lang.String, java.lang.String[])
java.lang.String[] getSpecificPageURLs(java.lang.String[] pages, java.lang.String[][] contexts)
pages
- An array of portal page labels of the desired
console pages.contexts
- An array of contexts identifying the
object each page should display or manage.java.lang.IllegalArgumentException
- if pages or contexts is null,
pages and contexts don't have the same length, or if there is a
problem with the information for any of the pages
(e.g. pages[2] is null or an empty string).
The pages and contexts arrays are parallel arrays specifying
each desired page. They must be the same length.
For example, pages[1] and contexts[1] are used to indicate
the information needed to compute the URL for the second page.
Similarly, the returned array of URLs parallels the pages
and contexts and pages arrays. For example, return[1] contains
the result for pages[1]/contexts[1].getSpecificPageURL(java.lang.String, java.lang.String[])
java.lang.String[] getObjectNameContext(java.lang.String objectName)
objectName
- the JMX object name of a WLS mbeanjava.lang.IllegalArgumentException
- if objectName is null or emptygetDefaultPageURL(java.lang.String[], java.lang.String)
,
getSpecificPageURL(java.lang.String, java.lang.String[])