1 | // $Id: WarningPnfsFileInfoMessage.java,v 1.2 2004-11-05 12:07:20 tigran Exp $ |
2 | |
3 | package diskCacheV111.vehicles ; |
4 | |
5 | import java.util.Date ; |
6 | import java.text.SimpleDateFormat ; |
7 | import diskCacheV111.util.PnfsId ; |
8 | |
9 | public class WarningPnfsFileInfoMessage extends PnfsFileInfoMessage { |
10 | |
11 | private static final long serialVersionUID = -5457677492665743755L; |
12 | |
13 | public WarningPnfsFileInfoMessage( String cellType , |
14 | String cellName , |
15 | PnfsId pnfsId , |
16 | int rc , |
17 | String returnMessage ){ |
18 | super("warning" , cellType , cellName , pnfsId ) ; |
19 | setResult( rc , returnMessage ) ; |
20 | } |
21 | } |