blob: 792c1791aaf56786922643970688e528c631d59a [file] [log] [blame]
/*
* Copyright (c) 2016 Manumitting Technologies Inc and others.
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Manumitting Technologies Inc - initial API and implementation
*/
package org.eclipse.userstorage.spi;
import org.eclipse.userstorage.IStorageService;
import org.eclipse.userstorage.internal.Session;
import org.eclipse.userstorage.internal.util.StringUtil;
import org.eclipse.userstorage.util.NoServiceException;
import org.apache.http.client.fluent.Request;
import java.net.URI;
/**
* Provides a base class for credentials providers.
* @since 1.1
*/
public abstract class AbstractCredentialsProvider implements ICredentialsProvider
{
@Override
public boolean hasCredentials(IStorageService service)
{
return false;
}
@Override
public Credentials getCredentials(IStorageService service)
{
return null;
}
@Override
public boolean updateCredentials(IStorageService service, Credentials credentials)
{
return false;
}
@Override
public boolean isValid(Credentials credentials)
{
return !StringUtil.isEmpty(credentials.getUsername()) && !StringUtil.isEmpty(credentials.getPassword());
}
@Override
public Request configureRequest(Request request, URI uri, Credentials credentials)
{
return request;
}
public Session openSession(IStorageService service) throws NoServiceException
{
throw new NoServiceException();
}
}