Files
palemoon27/mobile/android/base/fxa/sync/FxAccountGlobalSession.java
T

45 lines
1.8 KiB
Java

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
package org.mozilla.gecko.fxa.sync;
import java.io.IOException;
import java.net.URISyntaxException;
import java.util.Collections;
import java.util.EnumMap;
import java.util.Map;
import org.json.simple.parser.ParseException;
import org.mozilla.gecko.sync.GlobalSession;
import org.mozilla.gecko.sync.NonObjectJSONException;
import org.mozilla.gecko.sync.SyncConfiguration;
import org.mozilla.gecko.sync.SyncConfigurationException;
import org.mozilla.gecko.sync.delegates.BaseGlobalSessionCallback;
import org.mozilla.gecko.sync.delegates.ClientsDataDelegate;
import org.mozilla.gecko.sync.stage.CheckPreconditionsStage;
import org.mozilla.gecko.sync.stage.GlobalSyncStage;
import org.mozilla.gecko.sync.stage.GlobalSyncStage.Stage;
import android.content.Context;
public class FxAccountGlobalSession extends GlobalSession {
public FxAccountGlobalSession(SyncConfiguration config,
BaseGlobalSessionCallback callback,
Context context,
ClientsDataDelegate clientsDelegate)
throws SyncConfigurationException, IllegalArgumentException, IOException, ParseException, NonObjectJSONException, URISyntaxException {
super(config, callback, context, clientsDelegate, null);
}
@Override
public void prepareStages() {
super.prepareStages();
Map<Stage, GlobalSyncStage> stages = new EnumMap<>(Stage.class);
stages.putAll(this.stages);
stages.put(Stage.ensureClusterURL, new CheckPreconditionsStage());
stages.put(Stage.attemptMigrationStage, new CheckPreconditionsStage());
this.stages = Collections.unmodifiableMap(stages);
}
}