jdk/src/share/classes/javax/security/auth/kerberos/KerberosTicket.java
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 2 90ce3da70b43
child 51 6fe31bc95bbc
permissions -rw-r--r--
Initial load
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * Copyright 2000-2007 Sun Microsystems, Inc.  All Rights Reserved.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * by Sun in the LICENSE file that accompanied this code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 * have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package javax.security.auth.kerberos;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.io.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.util.Date;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.util.Arrays;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.net.InetAddress;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import javax.crypto.SecretKey;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import javax.security.auth.Refreshable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import javax.security.auth.Destroyable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import javax.security.auth.RefreshFailedException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import javax.security.auth.DestroyFailedException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import sun.misc.HexDumpEncoder;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import sun.security.krb5.EncryptionKey;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
import sun.security.krb5.Asn1Exception;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
import sun.security.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * This class encapsulates a Kerberos ticket and associated
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * information as viewed from the client's point of view. It captures all
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * information that the Key Distribution Center (KDC) sends to the client
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * in the reply message KDC-REP defined in the Kerberos Protocol
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * Specification (<a href=http://www.ietf.org/rfc/rfc4120.txt>RFC 4120</a>).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * All Kerberos JAAS login modules that authenticate a user to a KDC should
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * use this class. Where available, the login module might even read this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * information from a ticket cache in the operating system instead of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * directly communicating with the KDC. During the commit phase of the JAAS
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * authentication process, the JAAS login module should instantiate this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * class and store the instance in the private credential set of a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * {@link javax.security.auth.Subject Subject}.<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * It might be necessary for the application to be granted a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * {@link javax.security.auth.PrivateCredentialPermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * PrivateCredentialPermission} if it needs to access a KerberosTicket
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * instance from a Subject. This permission is not needed when the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * application depends on the default JGSS Kerberos mechanism to access the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * KerberosTicket. In that case, however, the application will need an
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * appropriate
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * {@link javax.security.auth.kerberos.ServicePermission ServicePermission}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * Note that this class is applicable to both ticket granting tickets and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 * other regular service tickets. A ticket granting ticket is just a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 * special case of a more generalized service ticket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 * @see javax.security.auth.Subject
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 * @see javax.security.auth.PrivateCredentialPermission
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 * @see javax.security.auth.login.LoginContext
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 * @see org.ietf.jgss.GSSCredential
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 * @see org.ietf.jgss.GSSManager
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 * @author Mayank Upadhyay
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 * @since 1.4
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
public class KerberosTicket implements Destroyable, Refreshable,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
         java.io.Serializable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    private static final long serialVersionUID = 7395334370157380539L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    // XXX Make these flag indices public
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    private static final int FORWARDABLE_TICKET_FLAG = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    private static final int FORWARDED_TICKET_FLAG   = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    private static final int PROXIABLE_TICKET_FLAG   = 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    private static final int PROXY_TICKET_FLAG       = 4;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    private static final int POSTDATED_TICKET_FLAG   = 6;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    private static final int RENEWABLE_TICKET_FLAG   = 8;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    private static final int INITIAL_TICKET_FLAG     = 9;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    private static final int NUM_FLAGS = 32;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     * ASN.1 DER Encoding of the Ticket as defined in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     * Kerberos Protocol Specification RFC4120.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    private byte[] asn1Encoding;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     *<code>KeyImpl</code> is serialized by writing out the ASN1 Encoded bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     * of the encryption key. The ASN1 encoding is defined in RFC4120 and as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     * follows:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     * EncryptionKey   ::= SEQUENCE {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     *          keytype    [0] Int32 -- actually encryption type --,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     *          keyvalue   [1] OCTET STRING
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     * }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     * </pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
    private KeyImpl sessionKey;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     * Ticket Flags as defined in the Kerberos Protocol Specification RFC4120.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
    private boolean[] flags;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     * Time of initial authentication
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    private Date authTime;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     * Time after which the ticket is valid.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
    private Date startTime;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     * Time after which the ticket will not be honored. (its expiration time).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
    private Date endTime;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     * For renewable Tickets it indicates the maximum endtime that may be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     * included in a renewal. It can be thought of as the absolute expiration
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * time for the ticket, including all renewals. This field may be null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * for tickets that are not renewable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
    private Date renewTill;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * Client that owns the service ticket
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
    private KerberosPrincipal client;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     * The service for which the ticket was issued.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
    private KerberosPrincipal server;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     * The addresses from where the ticket may be used by the client.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     * This field may be null when the ticket is usable from any address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
    private InetAddress[] clientAddresses;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
    private transient boolean destroyed = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     * Constructs a KerberosTicket using credentials information that a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     * client either receives from a KDC or reads from a cache.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     * @param asn1Encoding the ASN.1 encoding of the ticket as defined by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
     * the Kerberos protocol specification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
     * @param client the client that owns this service
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
     * ticket
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     * @param server the service that this ticket is for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     * @param sessionKey the raw bytes for the session key that must be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     * used to encrypt the authenticator that will be sent to the server
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     * @param keyType the key type for the session key as defined by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     * Kerberos protocol specification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     * @param flags the ticket flags. Each element in this array indicates
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     * the value for the corresponding bit in the ASN.1 BitString that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     * represents the ticket flags. If the number of elements in this array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     * is less than the number of flags used by the Kerberos protocol,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     * then the missing flags will be filled in with false.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
     * @param authTime the time of initial authentication for the client
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
     * @param startTime the time after which the ticket will be valid. This
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
     * may be null in which case the value of authTime is treated as the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     * startTime.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     * @param endTime the time after which the ticket will no longer be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     * valid
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     * @param renewTill an absolute expiration time for the ticket,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
     * including all renewal that might be possible. This field may be null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
     * for tickets that are not renewable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     * @param clientAddresses the addresses from where the ticket may be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     * used by the client. This field may be null when the ticket is usable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     * from any address.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
    public KerberosTicket(byte[] asn1Encoding,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
                         KerberosPrincipal client,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
                         KerberosPrincipal server,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
                         byte[] sessionKey,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
                         int keyType,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
                         boolean[] flags,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
                         Date authTime,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
                         Date startTime,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
                         Date endTime,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
                         Date renewTill,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
                         InetAddress[] clientAddresses) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
        init(asn1Encoding, client, server, sessionKey, keyType, flags,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
            authTime, startTime, endTime, renewTill, clientAddresses);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
    private void init(byte[] asn1Encoding,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
                         KerberosPrincipal client,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
                         KerberosPrincipal server,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
                         byte[] sessionKey,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
                         int keyType,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
                         boolean[] flags,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
                         Date authTime,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
                         Date startTime,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
                         Date endTime,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
                         Date renewTill,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
                         InetAddress[] clientAddresses) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
        if (asn1Encoding == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
           throw new IllegalArgumentException("ASN.1 encoding of ticket"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
                                              + " cannot be null");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
        this.asn1Encoding = asn1Encoding.clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
        if (client == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
           throw new IllegalArgumentException("Client name in ticket"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
                                              + " cannot be null");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
        this.client = client;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
        if (server == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
           throw new IllegalArgumentException("Server name in ticket"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
                                              + " cannot be null");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
        this.server = server;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
        if (sessionKey == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
           throw new IllegalArgumentException("Session key for ticket"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
                                              + " cannot be null");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
        this.sessionKey = new KeyImpl(sessionKey, keyType);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
        if (flags != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
           if (flags.length >= NUM_FLAGS)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
                this.flags = (boolean[]) flags.clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
           else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
                this.flags = new boolean[NUM_FLAGS];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
                // Fill in whatever we have
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
                for (int i = 0; i < flags.length; i++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
                    this.flags[i] = flags[i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
           }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
        } else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
           this.flags = new boolean[NUM_FLAGS];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
        if (this.flags[RENEWABLE_TICKET_FLAG]) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
           if (renewTill == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
                throw new IllegalArgumentException("The renewable period "
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
                       + "end time cannot be null for renewable tickets.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
           this.renewTill = renewTill;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
        this.authTime = authTime;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
        this.startTime = (startTime != null? startTime: authTime);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
        if (endTime == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
           throw new IllegalArgumentException("End time for ticket validity"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
                                              + " cannot be null");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
        this.endTime = endTime;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
        if (clientAddresses != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
           this.clientAddresses = (InetAddress[]) clientAddresses.clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
     * Returns the client principal associated with this ticket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
     * @return the client principal.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
    public final KerberosPrincipal getClient() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
        return client;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
     * Returns the service principal associated with this ticket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
     * @return the service principal.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
    public final KerberosPrincipal getServer() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
        return server;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
     * Returns the session key associated with this ticket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     * @return the session key.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
    public final SecretKey getSessionKey() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
        if (destroyed)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
            throw new IllegalStateException("This ticket is no longer valid");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
        return sessionKey;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
     * Returns the key type of the session key associated with this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
     * ticket as defined by the Kerberos Protocol Specification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
     * @return the key type of the session key associated with this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
     * ticket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
     * @see #getSessionKey()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
    public final int getSessionKeyType() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
        if (destroyed)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
            throw new IllegalStateException("This ticket is no longer valid");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
        return sessionKey.getKeyType();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
     * Determines if this ticket is forwardable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
     * @return true if this ticket is forwardable, false if not.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
    public final boolean isForwardable() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
        return flags[FORWARDABLE_TICKET_FLAG];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
     * Determines if this ticket had been forwarded or was issued based on
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
     * authentication involving a forwarded ticket-granting ticket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
     * @return true if this ticket had been forwarded or was issued based on
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
     * authentication involving a forwarded ticket-granting ticket,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
     * false otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
    public final boolean isForwarded() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
        return flags[FORWARDED_TICKET_FLAG];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     * Determines if this ticket is proxiable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
     * @return true if this ticket is proxiable, false if not.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
    public final boolean isProxiable() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
        return flags[PROXIABLE_TICKET_FLAG];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
     * Determines is this ticket is a proxy-ticket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
     * @return true if this ticket is a proxy-ticket, false if not.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
    public final boolean isProxy() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
        return flags[PROXY_TICKET_FLAG];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
     * Determines is this ticket is post-dated.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
     * @return true if this ticket is post-dated, false if not.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
    public final boolean isPostdated() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
        return flags[POSTDATED_TICKET_FLAG];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
     * Determines is this ticket is renewable. If so, the {@link #refresh()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
     * refresh} method can be called, assuming the validity period for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
     * renewing is not already over.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
     * @return true if this ticket is renewable, false if not.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
    public final boolean isRenewable() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
        return flags[RENEWABLE_TICKET_FLAG];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
     * Determines if this ticket was issued using the Kerberos AS-Exchange
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
     * protocol, and not issued based on some ticket-granting ticket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
     * @return true if this ticket was issued using the Kerberos AS-Exchange
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
     * protocol, false if not.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
    public final boolean isInitial() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
        return flags[INITIAL_TICKET_FLAG];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
     * Returns the flags associated with this ticket. Each element in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
     * returned array indicates the value for the corresponding bit in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
     * ASN.1 BitString that represents the ticket flags.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
     * @return the flags associated with this ticket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
    public final boolean[]  getFlags() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
        return (flags == null? null: (boolean[]) flags.clone());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
     * Returns the time that the client was authenticated.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
     * @return the time that the client was authenticated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
     *         or null if not set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
    public final java.util.Date getAuthTime() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
        return (authTime == null) ? null : new Date(authTime.getTime());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
     * Returns the start time for this ticket's validity period.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
     * @return the start time for this ticket's validity period
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
     *         or null if not set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
    public final java.util.Date getStartTime() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
        return (startTime == null) ? null : new Date(startTime.getTime());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
     * Returns the expiration time for this ticket's validity period.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
     * @return the expiration time for this ticket's validity period.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
    public final java.util.Date getEndTime() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
        return endTime;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
     * Returns the latest expiration time for this ticket, including all
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
     * renewals. This will return a null value for non-renewable tickets.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
     * @return the latest expiration time for this ticket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
    public final java.util.Date getRenewTill() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
        return (renewTill == null) ? null: new Date(renewTill.getTime());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
     * Returns a list of addresses from where the ticket can be used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
     * @return ths list of addresses or null, if the field was not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
     * provided.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
    public final java.net.InetAddress[] getClientAddresses() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
        return (clientAddresses == null?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
                null: (InetAddress[]) clientAddresses.clone());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
     * Returns an ASN.1 encoding of the entire ticket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
     * @return an ASN.1 encoding of the entire ticket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
    public final byte[] getEncoded() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
        if (destroyed)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
            throw new IllegalStateException("This ticket is no longer valid");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
        return (byte[]) asn1Encoding.clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
    /** Determines if this ticket is still current.  */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
    public boolean isCurrent() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
        return (System.currentTimeMillis() <= getEndTime().getTime());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
     * Extends the validity period of this ticket. The ticket will contain
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
     * a new session key if the refresh operation succeeds. The refresh
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
     * operation will fail if the ticket is not renewable or the latest
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
     * allowable renew time has passed. Any other error returned by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
     * KDC will also cause this method to fail.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
     * Note: This method is not synchronized with the the accessor
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
     * methods of this object. Hence callers need to be aware of multiple
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
     * threads that might access this and try to renew it at the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
     * time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
     * @throws RefreshFailedException if the ticket is not renewable, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
     * the latest allowable renew time has passed, or the KDC returns some
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
     * error.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
     * @see #isRenewable()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
     * @see #getRenewTill()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
    public void refresh() throws RefreshFailedException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
        if (destroyed)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
            throw new RefreshFailedException("A destroyed ticket "
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
                                             + "cannot be renewd.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
        if (!isRenewable())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
            throw new RefreshFailedException("This ticket is not renewable");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
        if (System.currentTimeMillis() > getRenewTill().getTime())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
            throw new RefreshFailedException("This ticket is past "
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
                                             + "its last renewal time.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
        Throwable e = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
        sun.security.krb5.Credentials krb5Creds = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
            krb5Creds = new sun.security.krb5.Credentials(asn1Encoding,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
                                                    client.toString(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
                                                    server.toString(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
                                                    sessionKey.getEncoded(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
                                                    sessionKey.getKeyType(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
                                                    flags,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
                                                    authTime,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
                                                    startTime,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
                                                    endTime,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
                                                    renewTill,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
                                                    clientAddresses);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
            krb5Creds = krb5Creds.renew();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
        } catch (sun.security.krb5.KrbException krbException) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
            e = krbException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
        } catch (java.io.IOException ioException) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
            e = ioException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
        if (e != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
            RefreshFailedException rfException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
                = new RefreshFailedException("Failed to renew Kerberos Ticket "
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
                                             + "for client " + client
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
                                             + " and server " + server
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
                                             + " - " + e.getMessage());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
            rfException.initCause(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
            throw rfException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
         * In case multiple threads try to refresh it at the same time.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
        synchronized (this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
                this.destroy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
            } catch (DestroyFailedException dfException) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
                // Squelch it since we don't care about the old ticket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
            init(krb5Creds.getEncoded(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
                 new KerberosPrincipal(krb5Creds.getClient().getName()),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
                 new KerberosPrincipal(krb5Creds.getServer().getName(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
                                        KerberosPrincipal.KRB_NT_SRV_INST),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
                 krb5Creds.getSessionKey().getBytes(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
                 krb5Creds.getSessionKey().getEType(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
                 krb5Creds.getFlags(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
                 krb5Creds.getAuthTime(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
                 krb5Creds.getStartTime(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
                 krb5Creds.getEndTime(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
                 krb5Creds.getRenewTill(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
                 krb5Creds.getClientAddresses());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
            destroyed = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
     * Destroys the ticket and destroys any sensitive information stored in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
     * it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
    public void destroy() throws DestroyFailedException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
        if (!destroyed) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
            Arrays.fill(asn1Encoding, (byte) 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
            client = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
            server = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
            sessionKey.destroy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
            flags = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
            authTime = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
            startTime = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
            endTime = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
            renewTill = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
            clientAddresses = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
            destroyed = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
     * Determines if this ticket has been destroyed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
    public boolean isDestroyed() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
        return destroyed;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
    public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
        if (destroyed)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
            throw new IllegalStateException("This ticket is no longer valid");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
        StringBuffer caddrBuf = new StringBuffer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
        if (clientAddresses != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
            for (int i = 0; i < clientAddresses.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
                caddrBuf.append("clientAddresses[" + i + "] = " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
                                 clientAddresses[i].toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
        return ("Ticket (hex) = " + "\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
                 (new HexDumpEncoder()).encodeBuffer(asn1Encoding) + "\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
                "Client Principal = " + client.toString() + "\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
                "Server Principal = " + server.toString() + "\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
                "Session Key = " + sessionKey.toString() + "\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
                "Forwardable Ticket " + flags[FORWARDABLE_TICKET_FLAG] + "\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
                "Forwarded Ticket " + flags[FORWARDED_TICKET_FLAG] + "\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
                "Proxiable Ticket " + flags[PROXIABLE_TICKET_FLAG] + "\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
                "Proxy Ticket " + flags[PROXY_TICKET_FLAG] + "\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
                "Postdated Ticket " + flags[POSTDATED_TICKET_FLAG] + "\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
                "Renewable Ticket " + flags[RENEWABLE_TICKET_FLAG] + "\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
                "Initial Ticket " + flags[RENEWABLE_TICKET_FLAG] + "\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
                "Auth Time = " + String.valueOf(authTime) + "\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
                "Start Time = " + String.valueOf(startTime) + "\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
                "End Time = " + endTime.toString() + "\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
                "Renew Till = " + String.valueOf(renewTill) + "\n" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
                "Client Addresses " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
                (clientAddresses == null ? " Null " : caddrBuf.toString() +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
                "\n"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
     * Returns a hashcode for this KerberosTicket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
     * @return a hashCode() for the <code>KerberosTicket</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
    public int hashCode() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
        int result = 17;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
        if (isDestroyed()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
            return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
        result = result * 37 + Arrays.hashCode(getEncoded());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
        result = result * 37 + endTime.hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
        result = result * 37 + client.hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
        result = result * 37 + server.hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
        result = result * 37 + sessionKey.hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
        // authTime may be null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
        if (authTime != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
            result = result * 37 + authTime.hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
        // startTime may be null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
        if (startTime != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
            result = result * 37 + startTime.hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
        // renewTill may be null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
        if (renewTill != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
            result = result * 37 + renewTill.hashCode();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
        // clientAddress may be null, the array's hashCode is 0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
        result = result * 37 + Arrays.hashCode(clientAddresses);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
        return result * 37 + Arrays.hashCode(flags);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
     * Compares the specified Object with this KerberosTicket for equality.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
     * Returns true if the given object is also a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
     * <code>KerberosTicket</code> and the two
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
     * <code>KerberosTicket</code> instances are equivalent.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
     * @param other the Object to compare to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
     * @return true if the specified object is equal to this KerberosTicket,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
     * false otherwise. NOTE: Returns false if either of the KerberosTicket
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
     * objects has been destroyed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
    public boolean equals(Object other) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
        if (other == this)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
        if (! (other instanceof KerberosTicket)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
        KerberosTicket otherTicket = ((KerberosTicket) other);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
        if (isDestroyed() || otherTicket.isDestroyed()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
        if (!Arrays.equals(getEncoded(), otherTicket.getEncoded()) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
                !endTime.equals(otherTicket.getEndTime()) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
                !server.equals(otherTicket.getServer()) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
                !client.equals(otherTicket.getClient()) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
                !sessionKey.equals(otherTicket.getSessionKey()) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
                !Arrays.equals(clientAddresses, otherTicket.getClientAddresses()) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
                !Arrays.equals(flags, otherTicket.getFlags())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
        // authTime may be null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
        if (authTime == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
            if (otherTicket.getAuthTime() != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
            if (!authTime.equals(otherTicket.getAuthTime()))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
        // startTime may be null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
        if (startTime == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
            if (otherTicket.getStartTime() != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
            if (!startTime.equals(otherTicket.getStartTime()))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
        if (renewTill == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
            if (otherTicket.getRenewTill() != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
            if (!renewTill.equals(otherTicket.getRenewTill()))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
                return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
}