com.filenet.api.property
Interface PropertyIndependentObjectSet

All Superinterfaces:
Property, java.io.Serializable

public interface PropertyIndependentObjectSet
extends Property

Represents a Content Engine property that holds an IndependentObjectSet object. An IndependentObjectSet object is a Java Set collection (unordered, unique) of IndependentObject objects.

See Also:
IndependentObjectSet

Method Summary
 IndependentObjectSet fetchIndependentObjectSetValue(PropertyFilter filter)
          Retrieves the value of this PropertyIndependentObjectSet property by making a roundtrip to the server using an optional property filter.
 IndependentObjectSet fetchIndependentObjectSetValue(PropertyFilter filter, int pageSize)
          Retrieves the value of this PropertyIndependentObjectSet property by making a roundtrip to the server using an optional property filter and page size.
 
Methods inherited from interface com.filenet.api.property.Property
getBinaryListValue, getBinaryValue, getBooleanListValue, getBooleanValue, getDateTimeListValue, getDateTimeValue, getDependentObjectListValue, getEngineObjectValue, getFloat64ListValue, getFloat64Value, getIdListValue, getIdValue, getIndependentObjectSetValue, getInputStreamValue, getInteger32ListValue, getInteger32Value, getObjectValue, getPropertyName, getRetrievalErrorValue, getState, getStringListValue, getStringValue, isDirty, isSettable, setObjectValue
 

Method Detail

fetchIndependentObjectSetValue

IndependentObjectSet fetchIndependentObjectSetValue(PropertyFilter filter)
Retrieves the value of this PropertyIndependentObjectSet property by making a roundtrip to the server using an optional property filter.

Parameters:
filter - A PropertyFilter object that represents information for controlling which property values (and with what level of detail and recursion) to return. If null, this method returns values for all non-object properties and returns placeholders for all object-valued properties (PropertyEngineObject properties with a state of PropertyState.UNEVALUATED or PropertyState.REFERENCE); any subsequent attempts to access an object-valued property will cause an automatic round-trip to the server to fetch its value.
Returns:
An IndependentObjectSet object.

fetchIndependentObjectSetValue

IndependentObjectSet fetchIndependentObjectSetValue(PropertyFilter filter,
                                                    int pageSize)
Retrieves the value of this PropertyIndependentObjectSet property by making a roundtrip to the server using an optional property filter and page size.

Parameters:
filter - A PropertyFilter object that represents information for controlling which property values (and with what level of detail and recursion) to return. If null, this method returns values for all non-object properties and returns placeholders for all object-valued properties (PropertyEngineObject properties with a state of PropertyState.UNEVALUATED or PropertyState.REFERENCE); any subsequent attempts to access an object-valued property will cause an automatic round-trip to the server to fetch its value.
pageSize - An int specifying the number of elements to fetch from the collection at a time.
Returns:
An IndependentObjectSet object.


© Copyright IBM Corporation 2006, 2009. All rights reserved.