001 /* 002 003 $Id: ExternalMessageType.java,v 1.1 2003/03/25 20:33:48 culdesac Exp $ 004 005 */ 006 007 package sharpster.common; 008 009 /** 010 * A interface containing constants used to idenitfy daemondaemon messages. 011 * 012 * 0 = undefined, error return. 013 * 1 = remoteCheckOutfiles 014 * 2 = remoteUpdateFiles 015 * 3 = remoteCommitFiles 016 * 4 = remoteAddfiles 017 * 5 = remoteRemoveFiles 018 * 6 = remoteGetShares 019 */ 020 021 public interface ExternalMessageType { 022 public static final int CHECKOUT_FILES = 0x01; 023 public static final int UPDATE_FILES = 0x02; 024 public static final int COMMIT_FILES = 0x03; 025 public static final int ADD_FILES = 0x04; 026 public static final int REMOVE_FILES = 0x05; 027 public static final int GET_SHARES = 0x06; 028 } 029 030 031 032 033