Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/main/app_share/IProtocolCommand.java

18 lines
511 B

import java.util.Arrays;
import java.util.HashSet;
import java.util.Set;
public interface IProtocolCommand {
public static final int SERVER_CONNECTION = 10;
public static final int CLIENT_CONNECTION = 20;
public static final int RELAY_CONNECTION = 30;
/*public Set<Integer> ALL_COMMANDS = new HashSet<Integer>(Arrays.asList(new Integer[] { new Integer(SERVER_CONNECTION),
new Integer(CLIENT_CONNECTION),
new Integer(RELAY_CONNECTION)}));
*/
}