90 lines
No EOL
2.6 KiB
Java
90 lines
No EOL
2.6 KiB
Java
package net.osmand.aidlapi.customization;
|
|
|
|
import android.net.Uri;
|
|
import android.os.Bundle;
|
|
import android.os.Parcel;
|
|
|
|
import net.osmand.aidlapi.AidlParams;
|
|
import net.osmand.aidlapi.profile.ExportSettingsType;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import static net.osmand.aidlapi.profile.ExportProfileParams.SETTINGS_TYPE_KEY;
|
|
|
|
public class ProfileSettingsParams extends AidlParams {
|
|
|
|
public static final String VERSION_KEY = "version";
|
|
public static final String REPLACE_KEY = "replace";
|
|
public static final String LATEST_CHANGES_KEY = "latestChanges";
|
|
public static final String PROFILE_SETTINGS_URI_KEY = "profileSettingsUri";
|
|
private Uri profileSettingsUri;
|
|
private String latestChanges;
|
|
private int version;
|
|
ArrayList<String> settingsTypeKeyList = new ArrayList<>();
|
|
boolean replace;
|
|
|
|
public ProfileSettingsParams(Uri profileSettingsUri, ArrayList<ExportSettingsType> settingsTypeList, boolean replace,
|
|
String latestChanges, int version) {
|
|
this.profileSettingsUri = profileSettingsUri;
|
|
for (ExportSettingsType settingsType : settingsTypeList) {
|
|
settingsTypeKeyList.add(settingsType.name());
|
|
}
|
|
this.replace = replace;
|
|
this.latestChanges = latestChanges;
|
|
this.version = version;
|
|
}
|
|
|
|
public ProfileSettingsParams(Parcel in) {
|
|
readFromParcel(in);
|
|
}
|
|
|
|
public static final Creator<ProfileSettingsParams> CREATOR = new Creator<ProfileSettingsParams>() {
|
|
@Override
|
|
public ProfileSettingsParams createFromParcel(Parcel in) {
|
|
return new ProfileSettingsParams(in);
|
|
}
|
|
|
|
@Override
|
|
public ProfileSettingsParams[] newArray(int size) {
|
|
return new ProfileSettingsParams[size];
|
|
}
|
|
};
|
|
|
|
public int getVersion() {
|
|
return version;
|
|
}
|
|
|
|
public String getLatestChanges() {
|
|
return latestChanges;
|
|
}
|
|
|
|
public Uri getProfileSettingsUri() {
|
|
return profileSettingsUri;
|
|
}
|
|
|
|
public ArrayList<String> getSettingsTypeKeys() {
|
|
return settingsTypeKeyList;
|
|
}
|
|
|
|
public boolean isReplace() {
|
|
return replace;
|
|
}
|
|
|
|
@Override
|
|
public void writeToBundle(Bundle bundle) {
|
|
bundle.putInt(VERSION_KEY, version);
|
|
bundle.putString(LATEST_CHANGES_KEY, latestChanges);
|
|
bundle.putParcelable(PROFILE_SETTINGS_URI_KEY, profileSettingsUri);
|
|
bundle.putStringArrayList(SETTINGS_TYPE_KEY, settingsTypeKeyList);
|
|
bundle.putBoolean(REPLACE_KEY, replace);
|
|
}
|
|
|
|
@Override
|
|
protected void readFromBundle(Bundle bundle) {
|
|
version = bundle.getInt(VERSION_KEY);
|
|
latestChanges = bundle.getString(LATEST_CHANGES_KEY);
|
|
profileSettingsUri = bundle.getParcelable(PROFILE_SETTINGS_URI_KEY);
|
|
settingsTypeKeyList = bundle.getStringArrayList(SETTINGS_TYPE_KEY);
|
|
replace = bundle.getBoolean(REPLACE_KEY);
|
|
}
|
|
} |