CallingAppInfo
class CallingAppInfo : Parcelable
Information pertaining to the calling application, including the package name and a list of app signatures.
Summary
Inherited constants |
From class Parcelable
Int |
CONTENTS_FILE_DESCRIPTOR
Descriptor bit used with describeContents() : indicates that the Parcelable object's flattened representation includes a file descriptor.
|
Int |
PARCELABLE_WRITE_RETURN_VALUE
Flag for use with writeToParcel : the object being written is a return value, that is the result of a function such as "Parcelable someFunction() ", "void someFunction(out Parcelable) ", or "void someFunction(inout Parcelable) ". Some implementations may want to release resources at this point.
|
|
Public constructors |
Constructs a new instance.
|
Constructs a new instance.
|
Public methods |
Int |
|
String? |
Returns the origin of the calling app if set otherwise returns null.
|
String |
Returns the package name of the source of this info.
|
SigningInfo |
Returns the SigningInfo object that contains an array of android.content.pm.Signature belonging to the app.
|
String |
|
Unit |
Flatten this object in to a Parcel.
|
Public constructors
CallingAppInfo
CallingAppInfo(
packageName: String,
signingInfo: SigningInfo)
Constructs a new instance.
Parameters |
packageName |
String: This value cannot be null . |
signingInfo |
SigningInfo: This value cannot be null . |
Exceptions |
java.lang.IllegalArgumentException |
If packageName is null or empty. |
java.lang.NullPointerException |
If signingInfo is null. |
CallingAppInfo
CallingAppInfo(
packageName: String,
signingInfo: SigningInfo,
origin: String?)
Constructs a new instance.
Parameters |
packageName |
String: - the package name of the calling app This value cannot be null . |
signingInfo |
SigningInfo: - the signing info on the calling app This value cannot be null . |
origin |
String?: - the origin that the calling app wants to use when making request on behalf of other This value may be null . |
Exceptions |
java.lang.IllegalArgumentException |
If packageName is null or empty. |
java.lang.NullPointerException |
If signingInfo is null. |
Public methods
describeContents
fun describeContents(): Int
getPackageName
fun getPackageName(): String
Returns the package name of the source of this info.
Return |
String |
This value cannot be null . |
toString
fun toString(): String
Return |
String |
a string representation of the object. |
writeToParcel
fun writeToParcel(
dest: Parcel,
flags: Int
): Unit
Flatten this object in to a Parcel.
Properties