mirror of
https://github.com/etesync/android
synced 2025-07-05 14:22:37 +00:00

* use preemptive Basic auth automatically for HTTPS connections * cache auth parameters (Basic/Digest)
50 lines
1.3 KiB
Java
50 lines
1.3 KiB
Java
/*
|
||
* Copyright © 2013 – 2016 Ricki Hirner (bitfire web engineering).
|
||
* All rights reserved. This program and the accompanying materials
|
||
* are made available under the terms of the GNU Public License v3.0
|
||
* which accompanies this distribution, and is available at
|
||
* http://www.gnu.org/licenses/gpl.html
|
||
*/
|
||
|
||
package at.bitfire.davdroid.ui.setup;
|
||
|
||
import android.os.Parcel;
|
||
import android.os.Parcelable;
|
||
|
||
import java.net.URI;
|
||
|
||
import lombok.RequiredArgsConstructor;
|
||
|
||
@RequiredArgsConstructor
|
||
public class LoginCredentials implements Parcelable {
|
||
public final URI uri;
|
||
public final String userName, password;
|
||
|
||
@Override
|
||
public int describeContents() {
|
||
return 0;
|
||
}
|
||
|
||
@Override
|
||
public void writeToParcel(Parcel dest, int flags) {
|
||
dest.writeSerializable(uri);
|
||
dest.writeString(userName);
|
||
dest.writeString(password);
|
||
}
|
||
|
||
public static final Creator CREATOR = new Creator<LoginCredentials>() {
|
||
@Override
|
||
public LoginCredentials createFromParcel(Parcel source) {
|
||
return new LoginCredentials(
|
||
(URI)source.readSerializable(),
|
||
source.readString(), source.readString()
|
||
);
|
||
}
|
||
|
||
@Override
|
||
public LoginCredentials[] newArray(int size) {
|
||
return new LoginCredentials[size];
|
||
}
|
||
};
|
||
}
|