01: /* Copyright 2003 The JA-SIG Collaborative. All rights reserved.
02: * See license distributed with this file and
03: * available online at http://www.uportal.org/license.html
04: */
05:
06: package org.jasig.portal;
07:
08: /**
09: * An interface that a multithreaded privileged channel must implement.
10: * @author Ken Weiner, kweiner@unicon.net
11: * @version $Revision: 36379 $
12: *
13: * @deprecated Use the IChannel* interfaces instead or write a portlet. For more information see:
14: * http://www.ja-sig.org/wiki/display/UPC/Proposal+to+Deprecate+IMultithreaded+Interfaces
15: */
16:
17: public interface IMultithreadedPrivileged {
18:
19: /**
20: * Passes portal control structure to the channel.
21: * @see PortalControlStructures
22: */
23: public void setPortalControlStructures(PortalControlStructures pcs,
24: String uid) throws PortalException;
25:
26: }
|