It would be nice if we could support programmatic support for proxying objects with method security. For example: ```java class Foo { @DenyAll String bar() { return "bar"; } } ``` ```java Foo secured = security.proxy(new Foo()); secured.bar(); // denied! ```