public final class CompositeUpdateResult
extends Object
Represents the result of a composite update operation, aggregating multiple
DtoUpdateResult objects
that represent individual update results.
This class is immutable and maintains an internal list of DtoUpdateResult , allowing for chained
operations while maintaining encapsulation.
Constructor Summary
Constructors
Method Summary
All Methods Instance Methods Concrete Methods
Returns the list of
DtoUpdateResult objects contained in this composite update result.
Methods inherited from class java.lang.Object
clone , equals , finalize , getClass , hashCode , notify , notifyAll , toString , wait , wait , wait
Constructor Details
CompositeUpdateResult
public CompositeUpdateResult ()
Method Details
primary
Returns the primary
DtoUpdateResult from the composite update result.
The primary result is the first non-null result in the list of
DtoUpdateResult objects.
Returns:
The primary DtoUpdateResult or null if no non-null result is found.