/* * Licensed to Jasig under one or more contributor license * agreements. See the NOTICE file distributed with this work * for additional information regarding copyright ownership. * Jasig 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 the following location: * * 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.jasig.cas.ticket; import java.io.Serializable; /** * Strategy that determines if the ticket is expired. Implementations of the * Expiration Policy define their own rules on what they consider an expired * Ticket to be. * * @author Scott Battaglia * @since 3.0 * <p> * This is a published and supported CAS Server 3 API. * </p> * @see org.jasig.cas.ticket.Ticket */ public interface ExpirationPolicy extends Serializable { /** * Method to determine if a Ticket has expired or not, based on the policy. * * @param ticketState The snapshot of the current ticket state * @return true if the ticket is expired, false otherwise. */ boolean isExpired(TicketState ticketState); }