public
final
class
BeginCreateCredentialRequest
extends Object
implements
Parcelable
Request for beginning a create credential request.
See BeginCreateCredentialResponse for the counterpart response
Summary
Inherited constants | ||||
|---|---|---|---|---|
|
From interface
|
Fields | |
|---|---|
public
static
final
Creator<BeginCreateCredentialRequest> |
CREATOR
|
Public constructors | |
|---|---|
BeginCreateCredentialRequest(String type, Bundle data)
Constructs a new instance without |
|
BeginCreateCredentialRequest(String type, Bundle data, CallingAppInfo callingAppInfo)
Constructs a new instance. |
|
Public methods | |
|---|---|
int
|
describeContents()
Describe the kinds of special objects contained in this Parcelable instance's marshaled representation. |
CallingAppInfo
|
getCallingAppInfo()
Returns the info pertaining to the calling app. |
Bundle
|
getData()
Returns the data to be used while resolving the credential to create. |
String
|
getType()
Returns the type of the credential to be created. |
void
|
writeToParcel(Parcel dest, int flags)
Flatten this object in to a Parcel. |
Inherited methods | |||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
From class
| |||||||||||||||||||||||
|
From interface
| |||||||||||||||||||||||
Fields
Public constructors
BeginCreateCredentialRequest
public BeginCreateCredentialRequest (String type, Bundle data, CallingAppInfo callingAppInfo)
Constructs a new instance.
| Parameters | |
|---|---|
type |
String: This value cannot be null. |
data |
Bundle: This value cannot be null. |
callingAppInfo |
CallingAppInfo: This value may be null. |
| Throws | |
|---|---|
IllegalArgumentException |
If callingAppInfo, or type string is
null or empty. |
NullPointerException |
If data is null. |
Public methods
describeContents
public int describeContents ()
Describe the kinds of special objects contained in this Parcelable
instance's marshaled representation. For example, if the object will
include a file descriptor in the output of writeToParcel(Parcel,int),
the return value of this method must include the
CONTENTS_FILE_DESCRIPTOR bit.
| Returns | |
|---|---|
int |
a bitmask indicating the set of special object types marshaled
by this Parcelable object instance.
Value is either 0 or
|