Add live TLS certificate probing and improve restart error handling.
Configure CertificateCheckUrl per container for curl-like TLS checks, classify Sonic permission errors, and extend setup wizard for container management. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -0,0 +1,465 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!--NewPage-->
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<!-- Generated by javadoc (build 1.5.0_19) on Fri Aug 12 11:25:07 EDT 2011 -->
|
||||
<TITLE>
|
||||
Descriptor (Management Application API)
|
||||
</TITLE>
|
||||
|
||||
<META NAME="keywords" CONTENT="javax.management.Descriptor interface">
|
||||
|
||||
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../stylesheet.css" TITLE="Style">
|
||||
|
||||
<SCRIPT type="text/javascript">
|
||||
function windowTitle()
|
||||
{
|
||||
parent.document.title="Descriptor (Management Application API)";
|
||||
}
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
</NOSCRIPT>
|
||||
|
||||
</HEAD>
|
||||
|
||||
<BODY BGCOLOR="white" onload="windowTitle();">
|
||||
|
||||
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<A NAME="navbar_top"><!-- --></A>
|
||||
<A HREF="Descriptor.html#skip-navbar_top" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_top_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
Sonic Management API</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV CLASS
|
||||
<A HREF="DescriptorAccess.html" title="interface in javax.management"><B>NEXT CLASS</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../index.html@javax%252Fmanagement%252FDescriptor.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="Descriptor.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
SUMMARY: NESTED | FIELD | CONSTR | <A HREF="Descriptor.html#method_summary">METHOD</A></FONT></TD>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
DETAIL: FIELD | CONSTR | <A HREF="Descriptor.html#method_detail">METHOD</A></FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_top"></A>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
|
||||
<HR>
|
||||
<!-- ======== START OF CLASS DATA ======== -->
|
||||
<H2>
|
||||
<FONT SIZE="-1">
|
||||
javax.management</FONT>
|
||||
<BR>
|
||||
Interface Descriptor</H2>
|
||||
<DL>
|
||||
<DT><B>All Superinterfaces:</B> <DD>java.lang.Cloneable, java.io.Serializable</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
<DL>
|
||||
<DT><PRE>public interface <B>Descriptor</B><DT>extends java.io.Serializable, java.lang.Cloneable</DL>
|
||||
</PRE>
|
||||
|
||||
<P>
|
||||
This interface represents the behavioral metadata set for a JMX Element.
|
||||
For examples, a descriptor is part of the ModelMBeanInfo, ModelMBeanNotificationInfo, ModelMBeanAttributeInfo,
|
||||
ModelMBeanConstructorInfo, and ModelMBeanParameterInfo.
|
||||
<P>
|
||||
A descriptor consists of a collection of fields. Each field is in fieldname=fieldvalue format.
|
||||
<P>
|
||||
All field names and values are not predefined. New fields can be defined and added by any program.
|
||||
In the case of ModelMBean some fields have been predefined for consistency of implementation and support by the ModelMBeanInfo
|
||||
ModelMBean*Info, and ModelMBean classes.
|
||||
<P>
|
||||
<P>
|
||||
|
||||
<P>
|
||||
<HR>
|
||||
|
||||
<P>
|
||||
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
|
||||
<A NAME="method_summary"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
|
||||
<B>Method Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.Object</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="Descriptor.html#clone()">clone</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
Returns a new Descriptor which is a duplicate of the Descriptor.</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String[]</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="Descriptor.html#getFieldNames()">getFieldNames</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
Returns all the fields names in the descriptor.</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String[]</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="Descriptor.html#getFields()">getFields</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
Returns all of the fields contained in this descriptor as a string array.</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.Object</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="Descriptor.html#getFieldValue(java.lang.String)">getFieldValue</A></B>(java.lang.String fieldName)</CODE>
|
||||
|
||||
<BR>
|
||||
Returns the value for a specific fieldname.</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.Object[]</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="Descriptor.html#getFieldValues(java.lang.String[])">getFieldValues</A></B>(java.lang.String[] fieldNames)</CODE>
|
||||
|
||||
<BR>
|
||||
Returns all the field values in the descriptor as an array of Objects.</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> boolean</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="Descriptor.html#isValid()">isValid</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
Returns true if all of the fields have legal values given their
|
||||
names.</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> void</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="Descriptor.html#removeField(java.lang.String)">removeField</A></B>(java.lang.String fieldName)</CODE>
|
||||
|
||||
<BR>
|
||||
Removes a field from the descriptor.</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> void</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="Descriptor.html#setField(java.lang.String, java.lang.Object)">setField</A></B>(java.lang.String fieldName,
|
||||
java.lang.Object fieldValue)</CODE>
|
||||
|
||||
<BR>
|
||||
Sets the value for a specific fieldname.</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> void</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="Descriptor.html#setFields(java.lang.String[], java.lang.Object[])">setFields</A></B>(java.lang.String[] fieldNames,
|
||||
java.lang.Object[] fieldValues)</CODE>
|
||||
|
||||
<BR>
|
||||
Sets all Fields in the list to the new value in with the same index
|
||||
in the fieldValue array.</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
|
||||
<A NAME="method_detail"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
|
||||
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
|
||||
<B>Method Detail</B></FONT></TH>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<A NAME="clone()"><!-- --></A><H3>
|
||||
clone</H3>
|
||||
<PRE>
|
||||
java.lang.Object <B>clone</B>()
|
||||
throws <A HREF="RuntimeOperationsException.html" title="class in javax.management">RuntimeOperationsException</A></PRE>
|
||||
<DL>
|
||||
<DD>Returns a new Descriptor which is a duplicate of the Descriptor.
|
||||
<P>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
|
||||
<DT><B>Throws:</B>
|
||||
<DD><CODE><A HREF="RuntimeOperationsException.html" title="class in javax.management">RuntimeOperationsException</A></CODE> - for illegal value for field Names or field Values.
|
||||
If the descriptor construction fails for any reason, this exception will be thrown.</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getFieldNames()"><!-- --></A><H3>
|
||||
getFieldNames</H3>
|
||||
<PRE>
|
||||
java.lang.String[] <B>getFieldNames</B>()</PRE>
|
||||
<DL>
|
||||
<DD>Returns all the fields names in the descriptor.
|
||||
<P>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
|
||||
<DT><B>Returns:</B><DD>String array of fields names. If the descriptor is empty, you will get
|
||||
an empty array.</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getFields()"><!-- --></A><H3>
|
||||
getFields</H3>
|
||||
<PRE>
|
||||
java.lang.String[] <B>getFields</B>()</PRE>
|
||||
<DL>
|
||||
<DD>Returns all of the fields contained in this descriptor as a string array.
|
||||
<P>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
|
||||
<DT><B>Returns:</B><DD>String array of fields in the format <i>fieldName=fieldValue</i>
|
||||
If the value of a field is not a String, then the toString() method
|
||||
will be called on it and the returned value used as the value for
|
||||
the field in the returned array. Object values which are not Strings
|
||||
will be enclosed in parens. If the descriptor is empty, you will get
|
||||
an empty array.<DT><B>See Also:</B><DD><A HREF="Descriptor.html#setFields(java.lang.String[], java.lang.Object[])"><CODE>setFields(java.lang.String[], java.lang.Object[])</CODE></A></DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getFieldValue(java.lang.String)"><!-- --></A><H3>
|
||||
getFieldValue</H3>
|
||||
<PRE>
|
||||
java.lang.Object <B>getFieldValue</B>(java.lang.String fieldName)
|
||||
throws <A HREF="RuntimeOperationsException.html" title="class in javax.management">RuntimeOperationsException</A></PRE>
|
||||
<DL>
|
||||
<DD>Returns the value for a specific fieldname.
|
||||
<P>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
<DT><B>Parameters:</B><DD><CODE>fieldName</CODE> - The field name in question; if not found, null is returned.
|
||||
<DT><B>Returns:</B><DD>Object Field value.
|
||||
<DT><B>Throws:</B>
|
||||
<DD><CODE><A HREF="RuntimeOperationsException.html" title="class in javax.management">RuntimeOperationsException</A></CODE> - for illegal value for field name.</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="getFieldValues(java.lang.String[])"><!-- --></A><H3>
|
||||
getFieldValues</H3>
|
||||
<PRE>
|
||||
java.lang.Object[] <B>getFieldValues</B>(java.lang.String[] fieldNames)</PRE>
|
||||
<DL>
|
||||
<DD>Returns all the field values in the descriptor as an array of Objects. The
|
||||
returned values are in the same order as the fieldNames String array parameter.
|
||||
<P>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
<DT><B>Parameters:</B><DD><CODE>fieldNames</CODE> - String array of the names of the fields that the values
|
||||
should be returned for. If the array is empty then an empty array will be
|
||||
returned. If the array is 'null' then all values will be returned. If a field
|
||||
name in the array does not exist, then null is returned for the matching array
|
||||
element being returned.
|
||||
<DT><B>Returns:</B><DD>Object array of field values. If the descriptor is empty, you will get
|
||||
an empty array.</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="isValid()"><!-- --></A><H3>
|
||||
isValid</H3>
|
||||
<PRE>
|
||||
boolean <B>isValid</B>()
|
||||
throws <A HREF="RuntimeOperationsException.html" title="class in javax.management">RuntimeOperationsException</A></PRE>
|
||||
<DL>
|
||||
<DD>Returns true if all of the fields have legal values given their
|
||||
names.
|
||||
<P>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
|
||||
<DT><B>Returns:</B><DD>true if the values are legal.
|
||||
<DT><B>Throws:</B>
|
||||
<DD><CODE><A HREF="RuntimeOperationsException.html" title="class in javax.management">RuntimeOperationsException</A></CODE> - If the validity checking fails for any reason, this exception will be thrown.</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="removeField(java.lang.String)"><!-- --></A><H3>
|
||||
removeField</H3>
|
||||
<PRE>
|
||||
void <B>removeField</B>(java.lang.String fieldName)</PRE>
|
||||
<DL>
|
||||
<DD>Removes a field from the descriptor.
|
||||
<P>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
<DT><B>Parameters:</B><DD><CODE>fieldName</CODE> - String name of the field to be removed.
|
||||
If the field is not found no exception is thrown.</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setField(java.lang.String, java.lang.Object)"><!-- --></A><H3>
|
||||
setField</H3>
|
||||
<PRE>
|
||||
void <B>setField</B>(java.lang.String fieldName,
|
||||
java.lang.Object fieldValue)
|
||||
throws <A HREF="RuntimeOperationsException.html" title="class in javax.management">RuntimeOperationsException</A></PRE>
|
||||
<DL>
|
||||
<DD>Sets the value for a specific fieldname. The field value will be validated before
|
||||
it is set. If it is not valid, then an exception will be thrown. This will modify
|
||||
an existing field or add a new field.
|
||||
<P>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
<DT><B>Parameters:</B><DD><CODE>fieldName</CODE> - The field name to be set. Cannot be null or empty.<DD><CODE>fieldValue</CODE> - The field value to be set for the field
|
||||
name. Can be null.
|
||||
<DT><B>Throws:</B>
|
||||
<DD><CODE><A HREF="RuntimeOperationsException.html" title="class in javax.management">RuntimeOperationsException</A></CODE> - for illegal value for field name or field value.</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="setFields(java.lang.String[], java.lang.Object[])"><!-- --></A><H3>
|
||||
setFields</H3>
|
||||
<PRE>
|
||||
void <B>setFields</B>(java.lang.String[] fieldNames,
|
||||
java.lang.Object[] fieldValues)
|
||||
throws <A HREF="RuntimeOperationsException.html" title="class in javax.management">RuntimeOperationsException</A></PRE>
|
||||
<DL>
|
||||
<DD>Sets all Fields in the list to the new value in with the same index
|
||||
in the fieldValue array. Array sizes must match.
|
||||
The field value will be validated before it is set.
|
||||
If it is not valid, then an exception will be thrown.
|
||||
If the arrays are empty, then no change will take effect.
|
||||
<P>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
<DT><B>Parameters:</B><DD><CODE>fieldNames</CODE> - String array of field names. The array and array elements cannot be null.<DD><CODE>fieldValues</CODE> - Object array of the corresponding field values. The array cannot be null.
|
||||
Elements of the array can be null.
|
||||
<DT><B>Throws:</B>
|
||||
<DD><CODE><A HREF="RuntimeOperationsException.html" title="class in javax.management">RuntimeOperationsException</A></CODE> - for illegal value for field Names or field Values.
|
||||
Neither can be null. The array lengths must be equal.
|
||||
If the descriptor construction fails for any reason, this exception will be thrown.<DT><B>See Also:</B><DD><A HREF="Descriptor.html#getFields()"><CODE>getFields()</CODE></A></DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<!-- ========= END OF CLASS DATA ========= -->
|
||||
<HR>
|
||||
|
||||
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<A NAME="navbar_bottom"><!-- --></A>
|
||||
<A HREF="Descriptor.html#skip-navbar_bottom" title="Skip navigation links"></A>
|
||||
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
|
||||
<TR>
|
||||
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
|
||||
<A NAME="navbar_bottom_firstrow"><!-- --></A>
|
||||
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
|
||||
<TR ALIGN="center" VALIGN="top">
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
|
||||
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
</TD>
|
||||
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
|
||||
Sonic Management API</EM>
|
||||
</TD>
|
||||
</TR>
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV CLASS
|
||||
<A HREF="DescriptorAccess.html" title="interface in javax.management"><B>NEXT CLASS</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../index.html@javax%252Fmanagement%252FDescriptor.html" target="_top"><B>FRAMES</B></A>
|
||||
<A HREF="Descriptor.html" target="_top"><B>NO FRAMES</B></A>
|
||||
<SCRIPT type="text/javascript">
|
||||
<!--
|
||||
if(window==top) {
|
||||
document.writeln('<A HREF="../../allclasses-noframe.html"><B>All Classes</B></A>');
|
||||
}
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<NOSCRIPT>
|
||||
<A HREF="../../allclasses-noframe.html"><B>All Classes</B></A>
|
||||
</NOSCRIPT>
|
||||
|
||||
|
||||
</FONT></TD>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
SUMMARY: NESTED | FIELD | CONSTR | <A HREF="Descriptor.html#method_summary">METHOD</A></FONT></TD>
|
||||
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
|
||||
DETAIL: FIELD | CONSTR | <A HREF="Descriptor.html#method_detail">METHOD</A></FONT></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="skip-navbar_bottom"></A>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
|
||||
<HR>
|
||||
<font size="-1">Copyright © 2001-2011
|
||||
<a href="http://www.progress.com" target="_top"> Progress Software Corporation</a>. All Rights Reserved.
|
||||
<br>HTML formatted on 12-Aug-2011.</font>
|
||||
</BODY>
|
||||
</HTML>
|
||||
Reference in New Issue
Block a user