1 16 package org.apache.commons.net.pop3; 17 18 24 25 public final class POP3Command 26 { 27 28 public static final int USER = 0; 29 30 public static final int PASS = 1; 31 32 public static final int QUIT = 2; 33 34 public static final int STAT = 3; 35 36 public static final int LIST = 4; 37 38 public static final int RETR = 5; 39 40 public static final int DELE = 6; 41 42 public static final int NOOP = 7; 43 44 public static final int RSET = 8; 45 46 public static final int APOP = 9; 47 48 public static final int TOP = 10; 49 50 public static final int UIDL = 11; 51 52 static final String [] _commands = { 53 "USER", "PASS", "QUIT", "STAT", "LIST", "RETR", "DELE", "NOOP", "RSET", 54 "APOP", "TOP", "UIDL" 55 }; 56 57 private POP3Command() 59 {} 60 61 66 public static final String getCommand(int command) 67 { 68 return _commands[command]; 69 } 70 } 71 | Popular Tags |