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

step.grid.tokenpool.RegistrationCallback Maven / Gradle / Ivy

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