com.unboundid.scim.sdk
Class Status

java.lang.Object
  extended by com.unboundid.scim.sdk.Status

public class Status
extends Object

This class represents the response status of an individual operation within a bulk operation.


Constructor Summary
Status(String code, String description)
          Construct a new Status value.
 
Method Summary
 String getCode()
          Retrieve the HTTP response code that would have been returned if a single HTTP request had been used.
 String getDescription()
          Retrieve the human readable error message, or null if the operation was successful and there is no additional information.
 String toString()
          
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Status

public Status(String code,
              String description)
Construct a new Status value.

Parameters:
code - The HTTP response code that would have been returned if a single HTTP request had been used.
description - A human readable error message, or null if the operation was successful and there is no additional information.
Method Detail

getCode

public String getCode()
Retrieve the HTTP response code that would have been returned if a single HTTP request had been used.

Returns:
The HTTP response code that would have been returned if a single HTTP request had been used.

getDescription

public String getDescription()
Retrieve the human readable error message, or null if the operation was successful and there is no additional information.

Returns:
The human readable error message, or null if the operation was successful and there is no additional information.

toString

public String toString()

Overrides:
toString in class Object


Copyright © 2011-2012 UnboundID. All Rights Reserved.