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 character channel that is also privileged.
10: * @author Peter Kharchenko {@link <a href="mailto:pkharchenko@interactivebusiness.com">pkharchenko@interactivebusiness.com</a>}, <a href="mailto:nbolton@unicon.net">Nick Bolton</a>
11: * @version $Revision: 36690 $
12: * @see MultithreadedCharacterChannelAdapter
13: */
14: public class MultithreadedPrivilegedCharacterChannelAdapter extends
15: MultithreadedCharacterChannelAdapter implements
16: IPrivilegedChannel {
17: public MultithreadedPrivilegedCharacterChannelAdapter(
18: IMultithreadedCharacterChannel channel, String uid) {
19: super (channel, uid);
20: }
21:
22: public void setPortalControlStructures(PortalControlStructures pcs)
23: throws PortalException {
24: ((IMultithreadedPrivileged) channel)
25: .setPortalControlStructures(pcs, uid);
26: }
27: }
|