Class EventLog
- java.lang.Object
-
- com.microsoft.appcenter.ingestion.models.AbstractLog
-
- com.microsoft.appcenter.ingestion.models.LogWithProperties
-
- com.microsoft.appcenter.analytics.ingestion.models.LogWithNameAndProperties
-
- com.microsoft.appcenter.analytics.ingestion.models.EventLog
-
- All Implemented Interfaces:
com.microsoft.appcenter.ingestion.models.Log,com.microsoft.appcenter.ingestion.models.Model
public class EventLog extends LogWithNameAndProperties
Event log.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringTYPE
-
Constructor Summary
Constructors Constructor Description EventLog()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)java.util.UUIDgetId()Get the id value.java.lang.StringgetType()java.util.List<com.microsoft.appcenter.ingestion.models.properties.TypedProperty>getTypedProperties()Get the typedProperties value.inthashCode()voidread(org.json.JSONObject object)voidsetId(java.util.UUID id)Set the id value.voidsetTypedProperties(java.util.List<com.microsoft.appcenter.ingestion.models.properties.TypedProperty> typedProperties)Set the typedProperties value.voidwrite(org.json.JSONStringer writer)-
Methods inherited from class com.microsoft.appcenter.analytics.ingestion.models.LogWithNameAndProperties
getName, setName
-
Methods inherited from class com.microsoft.appcenter.ingestion.models.LogWithProperties
getProperties, setProperties
-
-
-
-
Field Detail
-
TYPE
public static final java.lang.String TYPE
- See Also:
- Constant Field Values
-
-
Method Detail
-
getType
public java.lang.String getType()
-
getId
public java.util.UUID getId()
Get the id value.- Returns:
- the id value
-
setId
public void setId(java.util.UUID id)
Set the id value.- Parameters:
id- the id value to set
-
getTypedProperties
public java.util.List<com.microsoft.appcenter.ingestion.models.properties.TypedProperty> getTypedProperties()
Get the typedProperties value.- Returns:
- the typedProperties value
-
setTypedProperties
public void setTypedProperties(java.util.List<com.microsoft.appcenter.ingestion.models.properties.TypedProperty> typedProperties)
Set the typedProperties value.- Parameters:
typedProperties- the typedProperties 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 classLogWithNameAndProperties- 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 classLogWithNameAndProperties- Throws:
org.json.JSONException
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classLogWithNameAndProperties
-
hashCode
public int hashCode()
- Overrides:
hashCodein classLogWithNameAndProperties
-
-