org.jivesoftware.openfire.auth.AuthToken Maven / Gradle / Ivy
The newest version!
/*
* Copyright (C) 2004-2008 Jive Software. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jivesoftware.openfire.auth;
import org.jivesoftware.openfire.user.UserManager;
import org.jivesoftware.util.JiveGlobals;
/**
* A token that proves that a user has successfully authenticated.
*
* @author Matt Tucker
* @see AuthFactory
*/
public class AuthToken {
private static final long serialVersionUID = 01L;
private String username;
private String domain;
private Boolean anonymous;
/**
* Constucts a new AuthToken with the specified username.
* The username can be either a simple username or a full JID.
*
* @param jid the username or bare JID to create an authToken token with.
*/
public AuthToken(String jid) {
if (jid == null) {
this.domain = JiveGlobals.getProperty("xmpp.domain");
return;
}
int index = jid.indexOf("@");
if (index > -1) {
this.username = jid.substring(0,index);
this.domain = jid.substring(index+1);
} else {
this.username = jid;
this.domain = JiveGlobals.getProperty("xmpp.domain");
}
}
public AuthToken(String jid, Boolean anonymous) {
int index = jid.indexOf("@");
if (index > -1) {
this.username = jid.substring(0,index);
this.domain = jid.substring(index+1);
} else {
this.username = jid;
this.domain = JiveGlobals.getProperty("xmpp.domain");
}
this.anonymous = anonymous;
}
/**
* Returns the username associated with this AuthToken. A null value
* means that the authenticated user is anonymous.
*
* @return the username associated with this AuthToken or null when using an anonymous user.
*/
public String getUsername() {
return username;
}
/**
* Returns the domain associated with this AuthToken.
*
* @return the domain associated with this AuthToken.
*/
public String getDomain() {
return domain;
}
/**
* Returns true if this AuthToken is the Anonymous auth token.
*
* @return true if this token is the anonymous AuthToken.
*/
public boolean isAnonymous() {
if (anonymous == null) {
anonymous = username == null || !UserManager.getInstance().isRegisteredUser(username);
}
return anonymous;
}
}