Package org.terasology.module.sandbox

Examples of org.terasology.module.sandbox.ModuleSecurityManager


        setupSandbox();
        loadEnvironment(Sets.newHashSet(engineModule), true);
    }

    private void setupSandbox() {
        moduleSecurityManager = new ModuleSecurityManager();
        // TODO: This one org.terasology entry is a hack and needs a proper fix
        moduleSecurityManager.getBasePermissionSet().addAPIPackage("org.terasology.world.biomes");
        moduleSecurityManager.getBasePermissionSet().addAPIPackage("java.lang");
        moduleSecurityManager.getBasePermissionSet().addAPIPackage("java.lang.ref");
        moduleSecurityManager.getBasePermissionSet().addAPIPackage("java.math");
View Full Code Here

TOP

Related Classes of org.terasology.module.sandbox.ModuleSecurityManager

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.