class: ContainerVOListWrapper

public class: ContainerVOListWrapper
Author: Wilhelm Frank (initial creation)
Project: Phase: 1.0; Status: Proposed; Version: 1.0; Complexity: 1
Dates: Created: 16.07.2009 15:14:26; Modified: 16.07.2009 15:14:26;
Flags: Active: false; IsRoot: false; IsLeaf: false;
Extension Points:
UUID: {173E36CB-E645-4cc9-AE70-E2E946F3CCA8}
This class is used by the XML transforming classes to wrap a list of ContainerVOs. The reason for this is that JiBX cannot bind directly to ArrayLists.
 

Goto: Custom Properties, Fields, Methods

Appears in: wrappers

Custom Properties
 
ContainerVOListWrapper Attributes
Attribute Details
protected List
  containerVOList
Notes: The wrapped list of ContainerVOs.
private String
  limit
private String
  numberOfRecords
private String
  offset
private static const long
  serialVersionUID
Initial: 1L
Notes: Fixed serialVersionUID to prevent java.io.InvalidClassExceptions like 'de.mpg.escidoc.services.common.valueobjects.ContainerVO; local class incompatible: stream classdesc serialVersionUID = 8587635524303981401, local class serialVersionUID = -2285753348501257286' that occur after JiBX enhancement of VOs. Without the fixed serialVersionUID, the VOs have to be compiled twice for testing (once for the Application Server, once for the local test).
 
ContainerVOListWrapper Methods
Operation Details
public
getContainerVOList():List
Sequential
Notes: Unwraps the list of ContainerVOs.
@return The list of ContainerVOs
public
getLimit():String
Sequential
public
getNumberOfRecords():String
Sequential
public
getOffset():String
Sequential
public
setContainerVOList(
   List containerVOList):void
Sequential
Notes: Wraps a list of ContainerVOs.
public
setLimit(
   String limit):void
Sequential
public
setNumberOfRecords(
   String numberOfRecords):void
Sequential
public
setOffset(
   String offset):void
Sequential