1 | // $Id: PoolMgrSelectReadPoolMsg.java,v 1.5 2004-11-05 12:07:19 tigran Exp $ |
2 | |
3 | package diskCacheV111.vehicles ; |
4 | import diskCacheV111.poolManager.RequestContainerV5; |
5 | import diskCacheV111.util.* ; |
6 | |
7 | public class PoolMgrSelectReadPoolMsg extends PoolMgrSelectPoolMsg { |
8 | |
9 | private static final long serialVersionUID = -2126253028981131441L; |
10 | |
11 | public PoolMgrSelectReadPoolMsg( PnfsId pnfsId , |
12 | StorageInfo storageInfo, |
13 | ProtocolInfo protocolInfo, |
14 | long fileSize ){ |
15 | this( pnfsId , storageInfo , protocolInfo , fileSize, RequestContainerV5.allStates ) ; |
16 | } |
17 | |
18 | public PoolMgrSelectReadPoolMsg( PnfsId pnfsId , |
19 | StorageInfo storageInfo, |
20 | ProtocolInfo protocolInfo, |
21 | long fileSize, |
22 | int allowedStates){ |
23 | |
24 | super( pnfsId , storageInfo , protocolInfo , fileSize , allowedStates) ; |
25 | } |
26 | |
27 | } |