Remove deprecated methods from JMX tree
This commit is contained in:
Timothy Bish 2015-12-22 13:33:13 -05:00
parent 35627d9d68
commit 8906a53ae5
4 changed files with 0 additions and 57 deletions

View File

@ -113,11 +113,6 @@ public class JobSchedulerView implements JobSchedulerViewMBean {
this.jobScheduler.remove(removeAtTime);
}
@Override
public void removeJobAtScheduledTime(String time) throws Exception {
removeAllJobsAtScheduledTime(time);
}
@Override
public void removeJob(String jobId) throws Exception {
this.jobScheduler.remove(jobId);

View File

@ -20,23 +20,6 @@ import javax.management.openmbean.TabularData;
public interface JobSchedulerViewMBean {
/**
* Remove all jobs scheduled to run at this time. If there are no jobs scheduled
* at the given time this methods returns without making any modifications to the
* scheduler store.
*
* @param time
* the string formated time that should be used to remove jobs.
*
* @throws Exception if an error occurs while performing the remove.
*
* @deprecated use removeAllJobsAtScheduledTime instead as it is more explicit about what
* the method is actually doing.
*/
@Deprecated
@MBeanInfo("remove jobs with matching execution time")
public abstract void removeJobAtScheduledTime(@MBeanInfo("time: yyyy-MM-dd hh:mm:ss")String time) throws Exception;
/**
* Remove all jobs scheduled to run at this time. If there are no jobs scheduled
* at the given time this methods returns without making any modifications to the

View File

@ -122,15 +122,6 @@ public class SubscriptionView implements SubscriptionViewMBean {
return 0;
}
/**
* @return the id of the Subscription
*/
@Deprecated
@Override
public long getSubcriptionId() {
return getSubscriptionId();
}
/**
* @return the id of the Subscription
*/
@ -296,16 +287,6 @@ public class SubscriptionView implements SubscriptionViewMBean {
return info != null ? info.getPriority() : 0;
}
/**
* @return the name of the consumer which is only used for durable
* consumers.
*/
@Deprecated
@Override
public String getSubcriptionName() {
return getSubscriptionName();
}
/**
* @return the name of the consumer which is only used for durable
* consumers.

View File

@ -42,13 +42,6 @@ public interface SubscriptionViewMBean {
@MBeanInfo("ID of the Session the Subscription is on.")
long getSessionId();
/**
* @return the id of the Subscription
*/
@Deprecated
@MBeanInfo("ID of the Subscription.")
long getSubcriptionId();
/**
* @return the id of the Subscription
*/
@ -182,14 +175,6 @@ public interface SubscriptionViewMBean {
@MBeanInfo("The subscription priority")
byte getPriority();
/**
* @return the name of the consumer which is only used for durable
* consumers.
*/
@Deprecated
@MBeanInfo("The name of the subscription (durable subscriptions only).")
String getSubcriptionName();
/**
* @return the name of the consumer which is only used for durable
* consumers.
@ -241,7 +226,6 @@ public interface SubscriptionViewMBean {
@MBeanInfo("ObjectName of the Connection that created this Subscription")
ObjectName getConnection();
@MBeanInfo("Resets statistics.")
void resetStatistics();