01: // MICPMessage.java
02: // $Id: MICPMessage.java,v 1.3 1998/01/22 14:39:33 bmahe Exp $
03: // (c) COPYRIGHT MIT and INRIA, 1997.
04: // Please first read the full copyright statement in file COPYRIGHT.html
05:
06: package org.w3c.www.protocol.http.micp;
07:
08: public class MICPMessage {
09: public int version = -1;
10: public int op = -1;
11: public int src = -1;
12: public int id = -1;
13: public String url = null;
14: }
|