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: * Internal adapter for a multithreaded channel that is also privileged.
10: * @author <a href="mailto:nbolton@unicon.net">Nick Bolton</a>
11: * @version $Revision: 34812 $
12: * @see MultithreadedChannelAdapter
13: */
14: public class MultithreadedPrivilegedMimeResponseChannelAdapter extends
15: MultithreadedMimeResponseChannelAdapter implements
16: IPrivilegedChannel {
17: public MultithreadedPrivilegedMimeResponseChannelAdapter(
18: IMultithreadedChannel channel, String uid)
19: throws PortalException {
20: super (channel, uid);
21: }
22:
23: public void setPortalControlStructures(PortalControlStructures pcs)
24: throws PortalException {
25: ((IMultithreadedPrivileged) channel)
26: .setPortalControlStructures(pcs, uid);
27: }
28: }
|