EMMA Coverage Report (generated Mon Aug 23 17:21:34 CEST 2010)
[all classes][diskCacheV111.vehicles]

COVERAGE SUMMARY FOR SOURCE FILE [PoolFetchFileMessage.java]

nameclass, %method, %block, %line, %
PoolFetchFileMessage.java0%   (0/1)0%   (0/6)0%   (0/43)0%   (0/16)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class PoolFetchFileMessage0%   (0/1)0%   (0/6)0%   (0/43)0%   (0/16)
PoolFetchFileMessage (String, StorageInfo, PnfsId): void 0%   (0/1)0%   (0/13)0%   (0/5)
PoolFetchFileMessage (String, StorageInfo, String): void 0%   (0/1)0%   (0/16)0%   (0/5)
getPnfsId (): PnfsId 0%   (0/1)0%   (0/3)0%   (0/1)
getStorageInfo (): StorageInfo 0%   (0/1)0%   (0/3)0%   (0/1)
setPnfsId (PnfsId): void 0%   (0/1)0%   (0/4)0%   (0/2)
setStorageInfo (StorageInfo): void 0%   (0/1)0%   (0/4)0%   (0/2)

1// $Id: PoolFetchFileMessage.java,v 1.6 2006-04-10 12:19:03 tigran Exp $
2 
3package diskCacheV111.vehicles;
4 
5import diskCacheV111.util.PnfsId;
6 
7/**
8 * restore file from HSM
9 */
10 
11public class PoolFetchFileMessage extends PoolMessage {
12 
13    private PnfsId _pnfsId;
14    private StorageInfo _storageInfo;
15 
16    private static final long serialVersionUID = 1856537534158868883L;
17 
18    public PoolFetchFileMessage(String poolName, StorageInfo storageInfo,
19            PnfsId pnfsId) {
20        super(poolName);
21        _pnfsId = pnfsId;
22        _storageInfo = storageInfo;
23        setReplyRequired(true);
24    }
25 
26    public PoolFetchFileMessage(String poolName, StorageInfo storageInfo,
27            String pnfsId) {
28        super(poolName);
29        _pnfsId = new PnfsId(pnfsId);
30        _storageInfo = storageInfo;
31        setReplyRequired(true);
32    }
33 
34    public void setPnfsId(PnfsId pnfsId) {
35        _pnfsId = pnfsId;
36    }
37 
38    public PnfsId getPnfsId() {
39        return _pnfsId;
40    }
41 
42    public void setStorageInfo(StorageInfo storageInfo) {
43        _storageInfo = storageInfo;
44    }
45 
46    public StorageInfo getStorageInfo() {
47        return _storageInfo;
48    }
49 
50}

[all classes][diskCacheV111.vehicles]
EMMA 2.0.5312 (C) Vladimir Roubtsov