Package com.overmc.overpermissions

Examples of com.overmc.overpermissions.Group


        return value;
    }

    @Override
    public void setGroupInfoString(String world, String groupName, String node, String value) {
        Group group = overPerms.getGroupManager().getGroup(groupName);
        if (group == null) {
            return;
        }
        group.setMeta(node, value);
        group.recalculatePermissions();
    }
View Full Code Here


        }
    }

    @Override
    public String getGroupInfoString(String world, String groupName, String node, String defaultValue) {
        Group group = overPerms.getGroupManager().getGroup(groupName);
        if (group == null) {
            return defaultValue;
        }
        String value = group.getMeta(node);
        if (value == null) {
            return defaultValue;
        }
        return value;
    }
View Full Code Here

TOP

Related Classes of com.overmc.overpermissions.Group

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.