*
* This is mostly for the client side to see what kind of information is returned.
* @return javax.management.openmbean.CompositeType
*/
private CompositeType buildCompositeTypeForClassSummaryDetails() throws OpenDataException {
return new CompositeType("Class Details", "Details of class for Class Summary", new String[] {
"Class Name", "Parent Class Name", "Cache Type", "Configured Size", "Current Size" }, new String[] {
"Class Name", "Parent Class Name", "Cache Type", "Configured Size", "Current Size" }, new OpenType[] {
SimpleType.STRING, SimpleType.STRING, SimpleType.STRING, SimpleType.STRING, SimpleType.STRING });
}