Package org.apache.jena.http.auth
Class AuthCredentials
- java.lang.Object
-
- org.apache.jena.http.auth.AuthCredentials
-
public class AuthCredentials extends java.lang.Object
Registry of (username, password) for a remote location (endpoint URI and optional realm.
-
-
Constructor Summary
Constructors Constructor Description AuthCredentials()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clearAll()
boolean
contains(AuthDomain location)
PasswordRecord
get(AuthDomain location)
void
put(AuthDomain location, PasswordRecord pwRecord)
java.util.List<AuthDomain>
registered()
void
remove(AuthDomain location)
-
-
-
Method Detail
-
put
public void put(AuthDomain location, PasswordRecord pwRecord)
-
contains
public boolean contains(AuthDomain location)
-
registered
public java.util.List<AuthDomain> registered()
-
get
public PasswordRecord get(AuthDomain location)
-
remove
public void remove(AuthDomain location)
-
clearAll
public void clearAll()
-
-