-
public final class AppAuthorizationRequestRepresents a request from an Android app to access a Holochain app.
-
-
Field Summary
Fields Modifier and Type Field Description private StringclientPackageNameprivate StringinstalledAppId
-
Constructor Summary
Constructors Constructor Description AppAuthorizationRequest(String clientPackageName, String installedAppId)
-
Method Summary
Modifier and Type Method Description final StringgetClientPackageName()The Android package name requesting the authorization final UnitsetClientPackageName(String clientPackageName)The Android package name requesting the authorization final StringgetInstalledAppId()The Holochain app ID that the client wants to access final UnitsetInstalledAppId(String installedAppId)The Holochain app ID that the client wants to access -
-
Method Detail
-
getClientPackageName
final String getClientPackageName()
The Android package name requesting the authorization
-
setClientPackageName
final Unit setClientPackageName(String clientPackageName)
The Android package name requesting the authorization
-
getInstalledAppId
final String getInstalledAppId()
The Holochain app ID that the client wants to access
-
setInstalledAppId
final Unit setInstalledAppId(String installedAppId)
The Holochain app ID that the client wants to access
-
-
-
-