Home | History | Annotate | Download | only in auth

Lines Matching defs:workstation

60     private final String workstation;
92 this.workstation = null;
100 * @param workstation The workstation the authentication request is originating from.
107 final String workstation,
115 if (workstation != null) {
116 this.workstation = workstation.toUpperCase(Locale.ENGLISH);
118 this.workstation = null;
144 * Retrieves the workstation name of the computer originating the request.
146 * @return String the workstation the user is logged into.
149 return this.workstation;
156 hash = LangUtils.hashCode(hash, this.workstation);
167 && LangUtils.equals(this.workstation, that.workstation)) {
179 buffer.append("][workstation: ");
180 buffer.append(this.workstation);