blob: c13e9703bce1b98a5f2441b54b33ea72a5caf527 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
using System;
using System.Collections.Generic;
using System.Text;
namespace Apache.Geode.Client.Tests
{
using Apache.Geode.Client;
public class DummyAuthorization3 : CredentialGenerator
{
public override CredentialGenerator.ClassCode GetClassCode()
{
return ClassCode.Dummy;//TODO: this need to fix properly
}
public override string AuthInit
{
get { return null; }
}
public override string Authenticator
{
get { return "templates.security.DummyAuthenticator.create"; }
}
public string AuthenticatorPP
{
get { return "javaobject.DummyAuthorization3.create"; }
}
public override Properties<string, string> GetValidCredentials(int index)
{
var p = Properties<string, string>.Create();
p.Insert("security-username", "user" + index);
p.Insert("security-password", "user" + index);
return p;
}
public override Properties<string, string> GetValidCredentials(Properties<string, string> principal)
{
var p = Properties<string, string>.Create();
p.Insert("security-username", "user" + 100);
p.Insert("security-password", "user" + 100);
return p;
}
public override Properties<string, string> GetInvalidCredentials(int index)
{
var p = Properties<string, string>.Create();
p.Insert("security-username", "user" + index);
p.Insert("security-password", "12user" + index);
return p;
}
protected override Properties<string, string> Init()
{
return null;
}
}
}