/*
* Program: SSOProvider_SampleFunction1.java
* Purpose: Test program for SSO service provider #1
* @author Ray Lai (ray.lai@sun.com)
* @version 1.0
* Updated: April 20, 2005, 8:46 AM
* Copyright: (c) 2005 by Sun Microsystems/Ray Lai under Common Development and Distribution License
* Remarks: Full program and documentation will be available under developer.java.net
* For simplicity, logger class is removed.
* =====================================================================================
* Design summary
* This stub program illustrates an existing (whether home-grown or commercial package)
* or even new application solution that can be wrapped by SSOServiceProvider implementation.
*/
package com.csp.identity;
public class SSOProvider_SampleFunction1 {
/** Constructor - Creates a new instance of Test_SSOServiceProvider1 */
public SSOProvider_SampleFunction1() {
// to be implemented
}
public static void main(String[] args) {
new SSOProvider_SampleFunction1();
}
}