Sketcher2 source code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
446 B

package com.jotuntech.sketcher.server;
import com.jotuntech.sketcher.common.User;
public interface AccessController {
boolean isLoginAllowed(Server server, String login, String password);
boolean isKickAllowed(Server server, User source, User target);
boolean isMessageAllowed(Server server, User source, String message);
boolean isLayerActionAllowed(Server server, User source);
boolean isViewer(Server server, User source);
}