TestExampleMXBean.java :  » JVM » jmxetric » jmxetric » Java Open Source

Java Open Source » JVM » jmxetric 
jmxetric » jmxetric » TestExampleMXBean.java
package jmxetric;

/**
 * MXBean definition used for testing
 * @author humphrej
 *
 */
public interface TestExampleMXBean {
  
  final int INT_VALUE=1234 ;
  final long LONG_VALUE=43210L ;
  final double DOUBLE_VALUE=123.45D ;
  final float FLOAT_VALUE=543.21F ;
  final String STRING_VALUE="STRING" ;

  int getInt() ;
  long getLong() ;
  String getString() ;
  double getDouble() ;
  float getFloat() ;
  ExampleComposite getComposite();
  int getCounter() ;
}

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.