Package org.elasticsearch.client.watcher
Class GetWatchResponse
- java.lang.Object
-
- org.elasticsearch.client.watcher.GetWatchResponse
-
public class GetWatchResponse extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description GetWatchResponse(java.lang.String id)Ctor for missing watchGetWatchResponse(java.lang.String id, long version, long seqNo, long primaryTerm, WatchStatus status, BytesReference source, XContentType xContentType)
-
Method Summary
Modifier and Type Method Description booleanequals(java.lang.Object o)static GetWatchResponsefromXContent(XContentParser parser)XContentTypegetContentType()Returns theXContentTypeof the sourcejava.lang.StringgetId()longgetPrimaryTerm()longgetSeqNo()BytesReferencegetSource()Returns the serialized watchjava.util.Map<java.lang.String,java.lang.Object>getSourceAsMap()Returns the source as a mapWatchStatusgetStatus()longgetVersion()inthashCode()booleanisFound()
-
-
-
Constructor Detail
-
GetWatchResponse
public GetWatchResponse(java.lang.String id)
Ctor for missing watch
-
GetWatchResponse
public GetWatchResponse(java.lang.String id, long version, long seqNo, long primaryTerm, WatchStatus status, BytesReference source, XContentType xContentType)
-
-
Method Detail
-
getId
public java.lang.String getId()
-
getVersion
public long getVersion()
-
getSeqNo
public long getSeqNo()
-
getPrimaryTerm
public long getPrimaryTerm()
-
isFound
public boolean isFound()
-
getStatus
public WatchStatus getStatus()
-
getContentType
public XContentType getContentType()
Returns theXContentTypeof the source
-
getSource
public BytesReference getSource()
Returns the serialized watch
-
getSourceAsMap
public java.util.Map<java.lang.String,java.lang.Object> getSourceAsMap()
Returns the source as a map
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
fromXContent
public static GetWatchResponse fromXContent(XContentParser parser) throws java.io.IOException
- Throws:
java.io.IOException
-
-