it.amattioli.workstate.actions.AbstractGuard Maven / Gradle / Ivy
package it.amattioli.workstate.actions;
public abstract class AbstractGuard implements Guard {
public static final Integer USER_PRIORITY = new Integer(1000);
public boolean equals(Object o) {
return this.getClass().equals(o.getClass());
}
public Integer getPriority() {
return USER_PRIORITY;
}
public String toString() {
return this.getClass().getName();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy