blob: 1e2e72bdfcdbbed04b54fe846b7329eda89cfc62 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Boeing.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.framework.core.client;
import org.eclipse.osee.framework.core.data.OseeCredential;
import org.eclipse.osee.framework.core.data.SystemUser;
import org.eclipse.osee.framework.db.connection.exception.OseeCoreException;
/**
* @author Roberto E. Escobar
*/
public class GuestCredentialProvider extends BaseCredentialProvider {
/* (non-Javadoc)
* @see org.eclipse.osee.framework.core.client.BaseCredentialProvider#getCredential()
*/
@Override
public OseeCredential getCredential() throws OseeCoreException {
OseeCredential credential = super.getCredential();
credential.setUserName(SystemUser.Guest.getName());
return credential;
}
}