| 1 | //$Id: PnfsSetChecksumMessage.java,v 1.2 2007-08-30 21:11:07 abaranov Exp $ |
| 2 | |
| 3 | package diskCacheV111.vehicles; |
| 4 | import diskCacheV111.util.PnfsId ; |
| 5 | |
| 6 | //Base class for flag messages to PnfsManager |
| 7 | |
| 8 | |
| 9 | public class PnfsSetChecksumMessage extends PnfsMessage { |
| 10 | private String _value = null ; |
| 11 | private int _type = 0; |
| 12 | |
| 13 | private static final long serialVersionUID = 8848728352746647852L; |
| 14 | |
| 15 | public PnfsSetChecksumMessage( PnfsId pnfsId , int type, String value){ |
| 16 | super( pnfsId ) ; |
| 17 | _value = value; |
| 18 | _type = type; |
| 19 | setReplyRequired(true); |
| 20 | } |
| 21 | public String getValue(){ return _value; } |
| 22 | public int getType(){ return _type; } |
| 23 | } |