org.kuali.student.common.assembly.transform
Class TransformationManager

java.lang.Object
  extended by org.kuali.student.common.assembly.transform.TransformationManager

public class TransformationManager
extends Object


Field Summary
private  List<TransformFilter> inboundFilterList
           
(package private)  Logger LOG
           
private  DataBeanMapper mapper
           
private  MetadataServiceImpl metadataService
           
private  List<TransformFilter> outboundFilterList
           
 
Constructor Summary
TransformationManager()
           
 
Method Summary
 void applyInboundFilters(String dtoName, Object value, Map<String,Object> properties, Metadata metadata)
          This method applies all inbound filters known to his transformation manager.
 void applyMetadataFilters(String dtoName, Metadata metadata, Map<String,Object> filterProperties)
           
 void applyOutboundFilters(String dtoName, Object value, Map<String,Object> properties)
          This method applies all outbound filters known to his transformation manager.
 DataBeanMapper getMapper()
           
 Metadata getMetadata(String dtoName, Map<String,Object> filterProperties)
           
 Metadata getUnfilteredMetadata(String dtoName)
           
 void setFilters(List<TransformFilter> filters)
          Deprecated. 
 void setInboundFilters(List<TransformFilter> filters)
           
 void setMapper(DataBeanMapper mapper)
           
 void setMetadataService(MetadataServiceImpl metadataService)
           
 void setOutboundFilters(List<TransformFilter> filters)
           
 Object transform(Data value, Class<?> clazz)
          This is an inbound transform request which will convert incoming Data objects to the corresponding DTO object and apply inbound filter operations to both the data object and the converted DTO object.
 Object transform(Data value, Class<?> clazz, Map<String,Object> filterProperties)
          This is an inbound transform request which will convert incoming Data objects to the corresponding DTO object and apply inbound filters to both the data object and the converted DTO object.
 Data transform(Object value, String objectType)
          This is an outbound transform request which will convert incoming DTO objects to a Data map and apply outbound filter operation to both the data object and the converted DTO object.
 Data transform(Object value, String objectType, Map<String,Object> filterProperties)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

LOG

final Logger LOG

metadataService

private MetadataServiceImpl metadataService

mapper

private DataBeanMapper mapper

inboundFilterList

private List<TransformFilter> inboundFilterList

outboundFilterList

private List<TransformFilter> outboundFilterList
Constructor Detail

TransformationManager

public TransformationManager()
Method Detail

transform

public Data transform(Object value,
                      String objectType)
               throws Exception
This is an outbound transform request which will convert incoming DTO objects to a Data map and apply outbound filter operation to both the data object and the converted DTO object.

Parameters:
value -
objectType - TODO
Returns:
Throws:
Exception

transform

public Data transform(Object value,
                      String objectType,
                      Map<String,Object> filterProperties)
               throws Exception
Throws:
Exception

transform

public Object transform(Data value,
                        Class<?> clazz)
                 throws Exception
This is an inbound transform request which will convert incoming Data objects to the corresponding DTO object and apply inbound filter operations to both the data object and the converted DTO object.

Parameters:
value - The incoming Data value to transform to DTO object
clazz - The DTO object class represented by the Data value
Returns:
The converted DTO with both inbound Data and DTO filters applied.
Throws:
Exception

transform

public Object transform(Data value,
                        Class<?> clazz,
                        Map<String,Object> filterProperties)
                 throws Exception
This is an inbound transform request which will convert incoming Data objects to the corresponding DTO object and apply inbound filters to both the data object and the converted DTO object.

Parameters:
value - The incoming Data value to transform to DTO object
clazz - The DTO object class represented by the Data value
filterProperties - properties that can be consumed by the filters
Returns:
The converted DTO with both inbound Data and DTO filters applied.
Throws:
Exception

applyInboundFilters

public void applyInboundFilters(String dtoName,
                                Object value,
                                Map<String,Object> properties,
                                Metadata metadata)
                         throws Exception
This method applies all inbound filters known to his transformation manager.

Parameters:
dtoName - The name of the dto represented by a Data value, for Dto values, this can simply be the name of the dto class
value - The dto or data object to apply filters to
Throws:
Exception

applyOutboundFilters

public void applyOutboundFilters(String dtoName,
                                 Object value,
                                 Map<String,Object> properties)
                          throws Exception
This method applies all outbound filters known to his transformation manager.

Parameters:
dtoName - The name of the dto represented by a Data value, for Dto values, this can simply be the name of the dto class
value - The dto or data object to apply filters to
Throws:
Exception

getMetadata

public Metadata getMetadata(String dtoName,
                            Map<String,Object> filterProperties)

applyMetadataFilters

public void applyMetadataFilters(String dtoName,
                                 Metadata metadata,
                                 Map<String,Object> filterProperties)

getUnfilteredMetadata

public Metadata getUnfilteredMetadata(String dtoName)

setMetadataService

public void setMetadataService(MetadataServiceImpl metadataService)

getMapper

public DataBeanMapper getMapper()

setMapper

public void setMapper(DataBeanMapper mapper)

setFilters

@Deprecated
public void setFilters(List<TransformFilter> filters)
Deprecated. 

Use setInboundFilters and setOutboundFilters instead. This sets both the inbound and outbound filter chain to be the same.

Parameters:
filters -

setInboundFilters

public void setInboundFilters(List<TransformFilter> filters)

setOutboundFilters

public void setOutboundFilters(List<TransformFilter> filters)


Copyright © 2004-2012 The Kuali Foundation. All Rights Reserved.