public CredentialsLogicHandler(TestDelegationTokenRemoteFetcher _enclosing, Org.Apache.Hadoop.Security.Token.Token
                                <DelegationTokenIdentifier> token, string serviceUrl)
 {
     this._enclosing = _enclosing;
     routes          = ImmutableMap.Of("/exception", new TestDelegationTokenRemoteFetcher.ExceptionHandler
                                           (this), "/cancelDelegationToken", new TestDelegationTokenRemoteFetcher.CancelHandler
                                           (this), "/getDelegationToken", new TestDelegationTokenRemoteFetcher.FetchHandler
                                           (this), "/renewDelegationToken", new TestDelegationTokenRemoteFetcher.RenewHandler
                                           (this));
     this.token      = token;
     this.serviceUrl = serviceUrl;
 }
 internal CancelHandler(TestDelegationTokenRemoteFetcher _enclosing)
 {
     this._enclosing = _enclosing;
 }