01: /* Copyright 2001 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 both privileged and cacheable.
10: * @author Peter Kharchenko {@link <a href="mailto:pkharchenko@interactivebusiness.com">pkharchenko@interactivebusiness.com</a>}
11: * @version $Revision: 36690 $
12: * @see MultithreadedChannelAdapter
13: */
14:
15: public class MultithreadedPrivilegedCacheableChannelAdapter extends
16: MultithreadedCacheableChannelAdapter implements
17: IPrivilegedChannel {
18: public MultithreadedPrivilegedCacheableChannelAdapter(
19: IMultithreadedChannel channel, String uid) {
20: super (channel, uid);
21: }
22:
23: public void setPortalControlStructures(PortalControlStructures pcs)
24: throws PortalException {
25: ((IMultithreadedPrivileged) channel)
26: .setPortalControlStructures(pcs, uid);
27: }
28: }
|