com.nitorcreations.willow.auth.MonitorPermission Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of willow-servers Show documentation
Show all versions of willow-servers Show documentation
Willow operational servlets and servers
The newest version!
package com.nitorcreations.willow.auth;
import org.apache.shiro.authz.permission.DomainPermission;
public class MonitorPermission extends DomainPermission {
private static final long serialVersionUID = -8383249692495574699L;
public MonitorPermission() {
super("monitor");
}
}