Package com.wowza.util
Annotation 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()
{
}
}