Home | History | Annotate | Download | only in address

Lines Matching refs:USER

36  * User information part of a URL.
47 /** user field
49 protected String user;
65 public final static int USER = 2;
86 if (!this.user.equalsIgnoreCase(other.user)) {
102 * Encode the user information as a string.
111 buffer.append(user).append(COLON).append(password);
113 buffer.append(user);
125 * Gets the user type (which can be set to TELEPHONE_SUBSCRIBER or USER)
126 * @return the type of user.
132 /** get the user field.
136 return user;
147 * Set the user member
148 * @param user String to set
150 public void setUser(String user) {
151 this.user = user;
156 if (user != null
157 && (user.indexOf(POUND) >= 0 || user.indexOf(SEMICOLON) >= 0)) {
160 setUserType(USER);
173 * Set the user type (to TELEPHONE_SUBSCRIBER or USER).
178 if (type != TELEPHONE_SUBSCRIBER && type != USER) {