
ru.taskurotta.service.config.ConfigService Maven / Gradle / Ivy
package ru.taskurotta.service.config;
import ru.taskurotta.service.config.model.ActorPreferences;
import ru.taskurotta.service.config.model.ExpirationPolicyConfig;
import java.util.Collection;
/**
* User: romario
* Date: 4/1/13
* Time: 12:08 PM
*/
public interface ConfigService {
public boolean isActorBlocked(String actorId);
public void blockActor(String actorId);
public void unblockActor(String actorId);
public Collection getAllActorPreferences();
public Collection getAllExpirationPolicies();
public ActorPreferences getActorPreferences(String actorId);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy