01: /*
02: * Copyright 2002 Sun Microsystems, Inc. All rights reserved.
03: * PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
04: */
05:
06: package com.sun.portal.authenticate;
07:
08: public interface PortletTCKAuthentication {
09: String authenticate(String user, String password);
10: }
|