com.unboundid.scim.data
Class BulkConfig

java.lang.Object
  extended by com.unboundid.scim.data.BulkConfig

public class BulkConfig
extends Object

A complex type that specifies BULK configuration options.


Field Summary
static AttributeValueResolver<BulkConfig> BULK_CONFIG_RESOLVER
          The AttributeValueResolver that resolves SCIM attribute values to/from BulkConfig instances.
 
Constructor Summary
BulkConfig(boolean supported, long maxOperations, long maxPayloadSize)
          Create a BulkConfig instance.
 
Method Summary
 boolean equals(Object o)
           
 long getMaxOperations()
          Retrieves the maximum number of operations.
 long getMaxPayloadSize()
          Retrieves the maximum payload size in bytes.
 int hashCode()
           
 boolean isSupported()
          Indicates whether the PATCH operation is supported.
 String toString()
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

BULK_CONFIG_RESOLVER

public static final AttributeValueResolver<BulkConfig> BULK_CONFIG_RESOLVER
The AttributeValueResolver that resolves SCIM attribute values to/from BulkConfig instances.

Constructor Detail

BulkConfig

public BulkConfig(boolean supported,
                  long maxOperations,
                  long maxPayloadSize)
Create a BulkConfig instance.

Parameters:
supported - Specifies whether the BULK operation is supported.
maxOperations - Specifies the maximum number of operations.
maxPayloadSize - Specifies the maximum payload size in bytes.
Method Detail

isSupported

public boolean isSupported()
Indicates whether the PATCH operation is supported.

Returns:
true if the PATCH operation is supported.

getMaxOperations

public long getMaxOperations()
Retrieves the maximum number of operations.

Returns:
The maximum number of operations.

getMaxPayloadSize

public long getMaxPayloadSize()
Retrieves the maximum payload size in bytes.

Returns:
The maximum payload size in bytes.

equals

public boolean equals(Object o)
Overrides:
equals in class Object

hashCode

public int hashCode()
Overrides:
hashCode in class Object

toString

public String toString()
Overrides:
toString in class Object


Copyright © 2011-2012 UnboundID. All Rights Reserved.