Lines Matching full:username
155 * to retrieve for example to retrieve username/password used on an already registered
173 * A convenience method for retrieving the username of an existing account
174 * @return String describing the username
177 return getField("username");
198 * @param username String describing the username
203 public void register(String username, String password, Map<String,String> fields)throws XMPPException{
211 register.setUsername(username);
242 * @param username String describing the username
246 public void register(String username, String password) throws XMPPException{
247 register(username, password,new HashMap<String,String>());