Class Overview
This class defines profile for controlling access to the certificate being
installed. See also ClientCertificateManager.
Summary
|
[Expand]
Inherited Constants |
From interface
android.os.Parcelable
| int |
CONTENTS_FILE_DESCRIPTOR |
|
| int |
PARCELABLE_WRITE_RETURN_VALUE |
|
|
| Fields |
|
public
String |
alias |
Certificate alias. |
|
public
boolean |
allowAllPackages |
true if all packages in the container are allowed to access the
certificate, false otherwise. |
|
public
boolean |
allowWiFi |
true if WiFi is allowed to access the certificate, false otherwise. |
|
public
boolean |
isCSRResponse |
true if certificate is CSR response, false otherwise |
|
public
List<String> |
packageList |
List of packages allowed to access the certificate. |
|
[Expand]
Inherited Methods |
From class
java.lang.Object
|
Object
|
clone()
|
|
boolean
|
equals(Object arg0)
|
|
void
|
finalize()
|
|
final
Class<?>
|
getClass()
|
|
int
|
hashCode()
|
|
final
void
|
notify()
|
|
final
void
|
notifyAll()
|
|
String
|
toString()
|
|
final
void
|
wait(long arg0, int arg1)
|
|
final
void
|
wait(long arg0)
|
|
final
void
|
wait()
|
|
From interface
android.os.Parcelable
|
abstract
int
|
describeContents()
|
|
abstract
void
|
writeToParcel(Parcel arg0, int arg1)
|
|
Fields
public
String
alias
Since: API level 12
Certificate alias. In case of installing a CSR Response this alias should
match the one used while generating CSR. Maximum supported alias length
is 128 bytes.
public
boolean
allowAllPackages
Since: API level 12
true if all packages in the container are allowed to access the
certificate, false otherwise.
public
boolean
allowWiFi
Since: API level 12
true if WiFi is allowed to access the certificate, false otherwise.
public
boolean
isCSRResponse
Since: API level 12
true if certificate is CSR response, false otherwise
public
List<String>
packageList
Since: API level 12
List of packages allowed to access the certificate. This list should only
include packages which are whitelisted to access the Client Certificate
Manager token using CCMProfile. This list will not have any
impact if allowAllPackages is true. Installer package is
whitelisted by default to access the certificate.
Public Constructors
public
CertificateProfile
()