Package com.wowza.util
Annotation Type NoMBean
-
@Retention(RUNTIME) public @interface NoMBean
Annotation for excluding a method from the JMX interface. Below is an example of how it would be used
import com.wowza.util.NoMBean; import com.wowza.wms.module.*; class MyClass extends ModuleBase { @NoMBean public void myMethod() { } }