B4J Programming Press on the image to return to the main documentation page.

jFirebaseServer

List of types:

FirebaseServer
FirebaseToken

FirebaseServer


Events:

TokenVerified (TokenId As String, Success As Boolean, Token As FirebaseToken)

Members:


  Initialize (EventName As String, InputStream As java.io.InputStream)

  VerifyToken (TokenId As String)

Members description:

Initialize (EventName As String, InputStream As java.io.InputStream)
Initializes the object. Should be called once.
EventName - Sets the subs that will handle the events.
InputStream - An input stream from the json file downloaded from Firebase. The input stream will be closed.
VerifyToken (TokenId As String)
Verifies the given TokenId. The TokenVerified event will be raised in the current module.

FirebaseToken


Events:

None

Members:


  DisplayName As String [read only]

  Email As String [read only]

  IsInitialized As Boolean

  Uid As String [read only]

Members description:

DisplayName As String [read only]
Email As String [read only]
IsInitialized As Boolean
Uid As String [read only]

Top