@Override
public synchronized MBeanInfo getMBeanInfo() {
MBeanParameterInfo[] parameter = new MBeanParameterInfo[] { new MBeanParameterInfo(
"currentDate", "java.lang.String",
"The current date for the billing run. Format is "
+ DATE_FORMAT.toUpperCase()) };
MBeanOperationInfo[] operations = { new MBeanOperationInfo(
START_BILLING_RUN, "Start billing run", parameter,
"java.lang.String", MBeanOperationInfo.ACTION) };
return new MBeanInfo(this.getClass().getName(), "Billing Run MBean",
null, null, operations, null);
}
StartBillingRun.java 文件源码
java
阅读 15
收藏 0
点赞 0
评论 0
项目:oscm
作者:
评论列表
文章目录