Class RawManagerResponse
java.lang.Object
com.couchbase.client.java.manager.raw.RawManagerResponse
@Uncommitted public class RawManagerResponse extends Object
-
Constructor Summary
Constructors Constructor Description RawManagerResponse(ServiceType serviceType, JsonSerializer serializer, int httpStatus, byte[] payload) -
Method Summary
Modifier and Type Method Description <T> TcontentAs(TypeRef<T> target)Converts the payload into the target format.<T> TcontentAs(Class<T> target)Converts the payload into the target format.inthttpStatus()Returns the HTTP status code returned from the cluster.ServiceTypeserviceType()Returns the service type this response has been dispatched against.StringtoString()
-
Constructor Details
-
RawManagerResponse
public RawManagerResponse(ServiceType serviceType, JsonSerializer serializer, int httpStatus, byte[] payload)
-
-
Method Details
-
httpStatus
public int httpStatus()Returns the HTTP status code returned from the cluster. -
serviceType
Returns the service type this response has been dispatched against. -
contentAs
Converts the payload into the target format.- Parameters:
target- the target class to deserialize into.- Throws:
DecodingFailureException- if any row could not be successfully deserialized.
-
contentAs
Converts the payload into the target format.- Parameters:
target- the target class to deserialize into.- Throws:
DecodingFailureException- if any row could not be successfully deserialized.
-
toString
-