All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jdroid.java.firebase.database.auth.CustomTokenFirebaseAuthenticationStrategy Maven / Gradle / Ivy

There is a newer version: 0.15.0
Show newest version
package com.jdroid.java.firebase.database.auth;

import com.firebase.client.Firebase;

public abstract class CustomTokenFirebaseAuthenticationStrategy extends FirebaseAuthenticationStrategy {

	@Override
	protected void doAuthenticate(Firebase firebase) {
		firebase.authWithCustomToken(getAuthToken(), this);
	}

	protected abstract String getAuthToken();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy