Skip to content

Instantly share code, notes, and snippets.

@cleantutorials
Created May 19, 2020 04:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cleantutorials/e6cb6e72b486c4394e43712f17451c67 to your computer and use it in GitHub Desktop.
Save cleantutorials/e6cb6e72b486c4394e43712f17451c67 to your computer and use it in GitHub Desktop.
JMXTutorialMBean.java
package com.cleantutorials.jconsole.jmx;
public interface JMXTutorialMBean {
public int getNoOfStudents(); // Reading the value of the attribute (Getter method)
public void setNoOfStudents(int x); // Writing the value of the attribute (Setter Method)
public void incrementNoOfStudents(); // Any operation
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment