public class EMDKResults
extends java.lang.Object
Example Usage: ProfileConfig profileConfigObj = new ProfileConfig(); ProfileManager profileManager = (ProfileManager) EMDKManager.getInstance(getApplicationContext(), EMDKManager.FEATURE_TYPE.PROFILE EMDKResults results = profileManager.processProfile("Profile Name", ProfileManager.PROFILE_FLAG.GET, profileConfigObj);
Modifier and Type | Class and Description |
---|---|
static class |
EMDKResults.EXTENDED_STATUS_CODE
Defines all the extended status codes the library returns.
|
static class |
EMDKResults.STATUS_CODE
Defines all the status codes the library returns.
|
Modifier and Type | Field and Description |
---|---|
EMDKResults.EXTENDED_STATUS_CODE |
extendedStatusCode
Gets status code result from process profile as enum value of type
EMDKResults.EXTENDED_STATUS_CODE . |
EMDKResults.STATUS_CODE |
statusCode
Gets status code result from process profile as enum value of type
EMDKResults.STATUS_CODE . |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getExtendedStatusMessage()
Return the extended status information string.
|
org.w3c.dom.Document |
getStatusDocument()
Gets status results from process profile as xml document.
|
java.lang.String |
getStatusString()
Gets status results from process profile as xml string.
|
int |
getSuccessFeaturesCount()
Return the total number of features in profile request is success.
|
int |
getTotalFeaturesCount()
Return the total number of features in the profile.
|
public EMDKResults.EXTENDED_STATUS_CODE extendedStatusCode
EMDKResults.EXTENDED_STATUS_CODE
.
Example Usage: STATUS_CODE statusCode = results.extendedErrorInfo.statusCodeEx;
public EMDKResults.STATUS_CODE statusCode
EMDKResults.STATUS_CODE
.
Example Usage: STATUS_CODE statusCode = results.statusCode;
public java.lang.String getExtendedStatusMessage()
public int getTotalFeaturesCount()
public int getSuccessFeaturesCount()
public org.w3c.dom.Document getStatusDocument()
Example Usage: Document document = results.getStatusDocument();
public java.lang.String getStatusString()
Example Usage: String xml = results.getStatusString();