HomeSort by relevance Sort by last modified time
    Searched defs:username (Results 1 - 25 of 33) sorted by null

1 2

  /website/portal/trunk/src/java/org/opensolaris/tonic/action/user/
SignupConfirmAction.java 21 * This action activates a user account, keying on username and token request
26 * - username
30 * 1. attempt to unlock the account using the username/token
33 * - ERROR -> username/token combo doesn't match database.
40 private String username; field in class:SignupConfirmAction
44 return username;
46 public void setUsername(String username) {
47 this.username = username;
68 if (!remoteUser.unlock(username, token))
    [all...]
UserViewAction.java 22 * Retrieves a user based on id or username
28 private String username; field in class:UserViewAction
41 return username;
44 public void setUsername(String username) {
45 this.username = username;
57 if (id <= 0 && (username == null || username.equals(""))) {
66 user = users.getUser(username);
PasswordResetAction.java 27 * Sends email to user (who can supply a username or email) with a link that allows
33 * - username
54 private String username = ""; field in class:PasswordResetAction
63 return username;
65 public void setUsername(String username) {
66 this.username = username;
96 if (username.equals("")) {
99 user = users.getUser(username);
LoginAction.java 36 * - username
41 * 1. execute -> attempt to authenticate remote user, using username/password
71 private String username = null; field in class:LoginAction
92 return username;
94 public void setUsername(String username) {
95 this.username = username;
112 log.debug("Login attempt for user[username=" + username + "]");
115 int result = remoteUser.login(username, password)
    [all...]
PasswordResetVerifyAction.java 30 * - username
56 private String username = ""; field in class:PasswordResetVerifyAction
67 return username;
69 public void setUsername(String username) {
70 this.username = username;
124 log.debug("Trying to change password for user " + username
127 users.resetPassword(username, token, password);
130 throw new Exception("Could not reset password for user[username="
131 + username + "]. The token[" + token + "] didn't match.", e)
    [all...]
  /website/portal/trunk/src/java/org/opensolaris/tonic/security/webwork/
AuthorizationInterceptor.java 75 String username = tonicAction.getRemoteUser() == null ? "null" : tonicAction.getRemoteUser().getUsername(); local
79 log.debug("The remote user[username=" + username +
119 String username = tonicAction.getRemoteUser() == null ? "null" : tonicAction.getRemoteUser().getUsername(); local
123 log.warn("The remote user[username=" + username +
  /website/portal/trunk/src/java/org/opensolaris/tonic/user/
UserSearch.java 35 protected String username = null; field in class:UserSearch
59 return username;
61 public void setUsername(String username) {
62 if (!username.equals(""))
63 this.username = username;
194 toStringBuilder.append("username", username);
User.java 51 private String username = ""; field in class:User
135 * @hibernate.property column="username" length="100" update="false"
139 return username;
142 public void setUsername(String username) {
143 this.username = username;
596 toStringBuilder.append("username", this.username);
  /website/auth/AuthXWiki/lib/XWiki1.6/
securityfilter-2.0.jar 
xwiki-core-1.6.1.jar 
  /website/oso-libraries/XWiki/
securityfilter-2.0.jar 
xwiki-core-1.8.2.jar 
  /website/portal/trunk/src/java/org/opensolaris/tonic/feed/internal/
AbstractFeedManager.java 222 String username = userMatcher.group(1); local
225 entryDao.findSunBlogEntries(space, username);
230 "(?:roller\\/page\\/){0,1}" + username +
237 String authorLink = "http://blogs.sun.com/" + username +
239 String publishedGuid = "http://blogs.sun.com/" + username +
254 log.info("Couldn't extract username from Feed[url=" +
  /website/auth/DataMigration/src/org/opensolaris/data/migration/
AgreementMigrator.java 169 return this.username;
177 String username, Date startDate, Date endDate) {
181 this.username = username;
191 private String username; field in class:AgreementMigrator.Sca
214 String username; local
238 username = vars[2].trim();
239 if (username.isEmpty()) {
258 new Sca(agreementRef, type, companyName, username,
UsersMigrator.java 198 return this.username;
213 private User(int id, String username, String realName, String email,
219 this.username = username;
237 private String username; field in class:UsersMigrator.User
263 String sql = " SELECT id, username, real_name, email, " +
277 String username; local
294 username = rs.getString("username");
295 if (this.reservedUsernames.contains(username)) {
540 String username = user.getUsername().toLowerCase(); local
    [all...]
  /website/oso/auth/DataMigration/src/org/opensolaris/data/migration/
AgreementMigrator.java 169 return this.username;
177 String username, Date startDate, Date endDate) {
181 this.username = username;
191 private String username; field in class:AgreementMigrator.Sca
214 String username; local
238 username = vars[2].trim();
239 if (username.isEmpty()) {
258 new Sca(agreementRef, type, companyName, username,
UsersMigrator.java 188 return this.username;
199 private User(int id, String username, String realName, String email,
205 this.username = username;
223 private String username; field in class:UsersMigrator.User
249 String sql = " SELECT id, username, real_name, email, " +
264 String username; local
281 username = rs.getString("username");
296 this.users.add(new User(id, username, realName, email
525 String username = user.getUsername().toLowerCase(); local
    [all...]
  /website/portal/trunk/lib/ant/
catalina-ant.jar 
xdoclet-hibernate-module-1.2.2.jar 
  /website/portal/trunk/src/sql/mysql/
schema.sql 37 username CHAR(100) NOT NULL COMMENT 'Signin identifier',
53 created_by VARCHAR(100) NOT NULL COMMENT 'The username that created this entry.',
56 modified_by VARCHAR(100) NOT NULL COMMENT 'The username that modified this entry.',
66 UNIQUE INDEX tonic_user_username_u1 (username),
359 author VARCHAR(100) NOT NULL COMMENT 'The username of the author of the announcement.',
    [all...]
  /website/portal/trunk/lib/tonic-war/
c3p0-0.9.1-pre9.jar 
spring.jar 
  /website/auth/Libraries/Logging/
log4j-1.2.15.jar 
  /website/oso-libraries/Logging/
log4j-1.2.15.jar 
  /website/portal/trunk/lib/test/
hsqldb-1.8.0.jar 

Completed in 720 milliseconds

1 2