step.grid.tokenpool.RegistrationCallback Maven / Gradle / Ivy
package step.grid.tokenpool;
import java.util.List;
public interface RegistrationCallback {
/**
* invoked before registration of an entity
* @param subject entity to be registered
* @return true if registration is allowed, false if vetoed
*/
boolean beforeRegistering(T subject);
void afterUnregistering(List subject);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy