You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
656 B
42 lines
656 B
/*
|
|
* Copyright (c) 2004, 2005, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
package javax.management;
|
|
|
|
/**
|
|
* Interface to read the Descriptor of a management interface element
|
|
* such as an MBeanInfo.
|
|
* @since 1.6
|
|
*/
|
|
public interface DescriptorRead {
|
|
/**
|
|
* Returns a copy of Descriptor.
|
|
*
|
|
* @return Descriptor associated with the component implementing this interface.
|
|
* The return value is never null, but the returned descriptor may be empty.
|
|
*/
|
|
public Descriptor getDescriptor();
|
|
}
|