blob: 025f3abe98fb7a4bf441b86b8f4ee2c6a939f38d [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.
*
*/
package org.apache.directory.server.kerberos.shared.messages.components;
import javax.security.auth.kerberos.KerberosPrincipal;
import org.apache.directory.server.kerberos.shared.messages.value.AuthorizationData;
import org.apache.directory.server.kerberos.shared.messages.value.Checksum;
import org.apache.directory.server.kerberos.shared.messages.value.EncryptionKey;
import org.apache.directory.server.kerberos.shared.messages.value.KerberosPrincipalModifier;
import org.apache.directory.server.kerberos.shared.messages.value.KerberosTime;
import org.apache.directory.server.kerberos.shared.messages.value.PrincipalName;
/**
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
* @version $Rev$, $Date$
*/
public class AuthenticatorModifier
{
private int versionNumber;
private KerberosPrincipalModifier clientModifier = new KerberosPrincipalModifier();
private KerberosPrincipal clientPrincipal;
private Checksum checksum;
private int clientMicroSecond;
private KerberosTime clientTime;
private EncryptionKey subSessionKey;
private int sequenceNumber;
private AuthorizationData authorizationData;
/**
* Returns the {@link Authenticator}.
*
* @return The {@link Authenticator}.
*/
public Authenticator getAuthenticator()
{
if ( clientPrincipal == null )
{
clientPrincipal = clientModifier.getKerberosPrincipal();
}
return new Authenticator( versionNumber, clientPrincipal, checksum, clientMicroSecond, clientTime,
subSessionKey, sequenceNumber, authorizationData );
}
/**
* Sets the version number.
*
* @param versionNumber
*/
public void setVersionNumber( int versionNumber )
{
this.versionNumber = versionNumber;
}
/**
* Sets the client {@link PrincipalName}.
*
* @param name
*/
public void setClientName( PrincipalName name )
{
clientModifier.setPrincipalName( name );
}
/**
* Sets the client realm.
*
* @param realm
*/
public void setClientRealm( String realm )
{
clientModifier.setRealm( realm );
}
/**
* Sets the client {@link KerberosPrincipal}.
*
* @param clientPrincipal
*/
public void setClientPrincipal( KerberosPrincipal clientPrincipal )
{
this.clientPrincipal = clientPrincipal;
}
/**
* Sets the {@link AuthorizationData}.
*
* @param data
*/
public void setAuthorizationData( AuthorizationData data )
{
authorizationData = data;
}
/**
* Sets the {@link Checksum}.
*
* @param checksum
*/
public void setChecksum( Checksum checksum )
{
this.checksum = checksum;
}
/**
* Sets the client microsecond.
*
* @param microSecond
*/
public void setClientMicroSecond( int microSecond )
{
clientMicroSecond = microSecond;
}
/**
* Sets the client {@link KerberosTime}.
*
* @param time
*/
public void setClientTime( KerberosTime time )
{
clientTime = time;
}
/**
* Sets the sequence number.
*
* @param number
*/
public void setSequenceNumber( int number )
{
sequenceNumber = number;
}
/**
* Sets the sub-session {@link EncryptionKey}.
*
* @param sessionKey
*/
public void setSubSessionKey( EncryptionKey sessionKey )
{
subSessionKey = sessionKey;
}
}