com.att.aft.dme2.api.http.DmeBasicAuthentication Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dme2-api Show documentation
Show all versions of dme2-api Show documentation
Direct Messaging Engine dme2-api
The newest version!
/*******************************************************************************
* Copyright (c) 2016 AT&T Intellectual Property. All rights reserved.
*******************************************************************************/
package com.att.aft.dme2.api.http;
import java.io.IOException;
import java.net.URI;
import org.eclipse.jetty.client.util.BasicAuthentication;
import com.att.aft.dme2.api.SimpleRealm;
public class DmeBasicAuthentication extends BasicAuthentication
{
public DmeBasicAuthentication(URI uri, String realm, String user, String password) {
super(uri, realm, user, password);
}
public DmeBasicAuthentication(SimpleRealm realm) throws IOException {
super(null, realm.getPrincipal(), realm.getId(), realm.getCredentials());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy