*/
protected VMInvoker accept(Principal principal, URIRequestInfo info,
VMInvoker client, URI uri)
throws ResourceException {
if (!_authenticator.authenticate(principal)) {
throw new SecurityException("Failed to authenticate: " + principal);
}
VMManagedConnection connection =
new VMManagedConnection(principal, info, client, uri);
VMInvoker invoker = new VMInvoker(connection);
ManagedConnectionAcceptorListener listener;