Polish
This commit is contained in:
@@ -71,6 +71,15 @@ public class QuartzEndpoint {
|
||||
|
||||
private final Sanitizer sanitizer;
|
||||
|
||||
/**
|
||||
* Create an instance for the specified {@link Scheduler} using a default
|
||||
* {@link Sanitizer}.
|
||||
* @param scheduler the scheduler to use to retrieve jobs and triggers details
|
||||
*/
|
||||
public QuartzEndpoint(Scheduler scheduler) {
|
||||
this(scheduler, new Sanitizer());
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance for the specified {@link Scheduler} and {@link Sanitizer}.
|
||||
* @param scheduler the scheduler to use to retrieve jobs and triggers details
|
||||
@@ -83,15 +92,6 @@ public class QuartzEndpoint {
|
||||
this.sanitizer = sanitizer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance for the specified {@link Scheduler} using a default
|
||||
* {@link Sanitizer}.
|
||||
* @param scheduler the scheduler to use to retrieve jobs and triggers details
|
||||
*/
|
||||
public QuartzEndpoint(Scheduler scheduler) {
|
||||
this(scheduler, new Sanitizer());
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the available job and trigger group names.
|
||||
* @return a report of the available group names
|
||||
|
||||
Reference in New Issue
Block a user