$ mvn -C clean install
<dependency> <groupId>com.io7m.jcage</groupId> <artifactId>io7m-jcage-core</artifactId> <version>0.1.0</version> </dependency>
Copyright © 2015 <code@io7m.com> http://io7m.com
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
| Type | Purpose |
|---|---|
| JCClassLoader.java | Loads classes and assigns sandbox-specific code sources. |
| JCClassLoaderPolicyType.java | The implementation exposed by class loader policies, for selectively delegating classloading. |
| JCPolicy.java | A run-time configurable implementation of the standard Policy type. |
| JCSecurityManager.java | A security manager implementation that re-enables the historically omitted checks |
| JCSandboxes.java | The default implementation of the user-visible sandbox creation interface |
| Name | Description |
|---|---|
| sandboxed_0/Sandboxed.java | A sandboxed class that demonstrates an inability to performed privileged operations. |
| sandboxed_0/SandboxerMain.java | The creation of a sandbox. |
| sandboxed_1/Sandboxed.java | A sandboxed class that demonstrates an inability to performed privileged operations, but can call a host-provided API to perform privileged operations. |
| sandboxed_1/SandboxerMain.java | The creation of a sandbox that allows selective privileged operations. |