Package org.jasig.cas.client.proxy

Examples of org.jasig.cas.client.proxy.CleanUpTimerTask


            if (this.timer == null) {
                this.timer = new Timer(true);
            }
           
            if (this.timerTask == null) {
                this.timerTask = new CleanUpTimerTask(this.proxyGrantingTicketStorage);
            }
            this.timer.schedule(this.timerTask, this.millisBetweenCleanUps, this.millisBetweenCleanUps);
        }
    }
View Full Code Here

TOP

Related Classes of org.jasig.cas.client.proxy.CleanUpTimerTask

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.