blob: e037ce6b6e0c56a899aae5bcb713479572945c33 [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 org.apache.directory.server.kerberos.shared.KerberosMessageType;
import org.apache.directory.server.kerberos.shared.messages.Encodable;
import org.apache.directory.server.kerberos.shared.messages.KerberosMessage;
import org.apache.directory.server.kerberos.shared.messages.value.HostAddress;
import org.apache.directory.server.kerberos.shared.messages.value.KerberosTime;
/**
* Encrypted part of private messages.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
* @version $Rev$, $Date$
*/
public class EncKrbPrivPart extends KerberosMessage implements Encodable
{
private byte[] userData;
private KerberosTime timestamp; //optional
private Integer usec; //optional
private Integer sequenceNumber; //optional
private HostAddress senderAddress; //optional
private HostAddress recipientAddress; //optional
/**
* Creates a new instance of EncKrbPrivPart.
*
* @param userData
* @param timestamp
* @param usec
* @param sequenceNumber
* @param senderAddress
* @param recipientAddress
*/
public EncKrbPrivPart( byte[] userData, KerberosTime timestamp, Integer usec, Integer sequenceNumber,
HostAddress senderAddress, HostAddress recipientAddress )
{
super( KerberosMessageType.ENC_PRIV_PART );
this.userData = userData;
this.timestamp = timestamp;
this.usec = usec;
this.sequenceNumber = sequenceNumber;
this.senderAddress = senderAddress;
this.recipientAddress = recipientAddress;
}
/**
* Returns the recipient {@link HostAddress}.
*
* @return The recipient {@link HostAddress}.
*/
public HostAddress getRecipientAddress()
{
return recipientAddress;
}
/**
* Returns the sender {@link HostAddress}.
*
* @return The sender {@link HostAddress}.
*/
public HostAddress getSenderAddress()
{
return senderAddress;
}
/**
* Returns the sequence number.
*
* @return The sequence number.
*/
public Integer getSequenceNumber()
{
return sequenceNumber;
}
/**
* Returns the {@link KerberosTime} timestamp.
*
* @return The {@link KerberosTime} timestamp.
*/
public KerberosTime getTimestamp()
{
return timestamp;
}
/**
* Returns the microsecond.
*
* @return The microsecond.
*/
public Integer getMicroSecond()
{
return usec;
}
/**
* Returns the user data.
*
* @return The user data.
*/
public byte[] getUserData()
{
return userData;
}
}