Class ManagedErrorLog
- java.lang.Object
-
- com.microsoft.appcenter.ingestion.models.AbstractLog
-
- com.microsoft.appcenter.crashes.ingestion.models.AbstractErrorLog
-
- com.microsoft.appcenter.crashes.ingestion.models.ManagedErrorLog
-
- All Implemented Interfaces:
com.microsoft.appcenter.ingestion.models.Log,com.microsoft.appcenter.ingestion.models.Model
public class ManagedErrorLog extends AbstractErrorLog
Error log for managed platforms (such as Android Dalvik).
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringTYPELog type.
-
Constructor Summary
Constructors Constructor Description ManagedErrorLog()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)ExceptiongetException()Get the exception value.java.util.List<Thread>getThreads()Get the threads value.java.lang.StringgetType()inthashCode()voidread(org.json.JSONObject object)voidsetException(Exception exception)Set the exception value.voidsetThreads(java.util.List<Thread> threads)Set the threads value.voidwrite(org.json.JSONStringer writer)-
Methods inherited from class com.microsoft.appcenter.crashes.ingestion.models.AbstractErrorLog
getAppLaunchTimestamp, getArchitecture, getErrorThreadId, getErrorThreadName, getFatal, getId, getParentProcessId, getParentProcessName, getProcessId, getProcessName, setAppLaunchTimestamp, setArchitecture, setErrorThreadId, setErrorThreadName, setFatal, setId, setParentProcessId, setParentProcessName, setProcessId, setProcessName
-
-
-
-
Field Detail
-
TYPE
public static final java.lang.String TYPE
Log type.- See Also:
- Constant Field Values
-
-
Method Detail
-
getType
public java.lang.String getType()
-
getException
public Exception getException()
Get the exception value.- Returns:
- the exception value
-
setException
public void setException(Exception exception)
Set the exception value.- Parameters:
exception- the exception value to set
-
getThreads
public java.util.List<Thread> getThreads()
Get the threads value.- Returns:
- the threads value
-
setThreads
public void setThreads(java.util.List<Thread> threads)
Set the threads value.- Parameters:
threads- the threads value to set
-
read
public void read(org.json.JSONObject object) throws org.json.JSONException- Specified by:
readin interfacecom.microsoft.appcenter.ingestion.models.Model- Overrides:
readin classAbstractErrorLog- Throws:
org.json.JSONException
-
write
public void write(org.json.JSONStringer writer) throws org.json.JSONException- Specified by:
writein interfacecom.microsoft.appcenter.ingestion.models.Model- Overrides:
writein classAbstractErrorLog- Throws:
org.json.JSONException
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classAbstractErrorLog
-
hashCode
public int hashCode()
- Overrides:
hashCodein classAbstractErrorLog
-
-