1 5 package org.exoplatform.services.communication.sms.model; 6 7 8 12 public class LogonStatus { 13 public static final LogonStatus NONE = new LogonStatus("None"); 14 public static final LogonStatus SUCCESS = new LogonStatus("Success"); 15 public static final LogonStatus FAILED = new LogonStatus("Failed"); 16 17 private String _name; 18 19 public LogonStatus(String name) { 20 _name = name; 21 } 22 23 public boolean equals(Object obj) { 24 return super.equals(obj); 25 } 26 public String toString() { 27 return _name.toString(); 28 } 29 } 30 | Popular Tags |