All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.amattioli.workstate.actions.AbstractGuard Maven / Gradle / Ivy

There is a newer version: 1.0.7
Show newest version
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