/*
* Copyright 2001 Sun Microsystems, Inc. All rights reserved.
* PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
*/
package com.sun.portal.desktop.taglib.providerContext;
import javax.servlet.jsp.JspException;
import com.sun.portal.providers.context.ProviderContext;
import com.sun.portal.desktop.context.ContextException;
import com.sun.portal.desktop.taglib.DesktopTaglibException;
public class GetUserIDTag
extends BaseProviderContextTagSupport
{
public int doStartTag() throws JspException {
ProviderContext pc = getCurrentProviderContext();
String result = null;
result = pc.getUserID();
processResult( result );
return SKIP_BODY;
}
}
|