|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.kuali.student.common.assembly.transform.TransformationManager
public class TransformationManager
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 |
---|
final Logger LOG
private MetadataServiceImpl metadataService
private DataBeanMapper mapper
private List<TransformFilter> inboundFilterList
private List<TransformFilter> outboundFilterList
Constructor Detail |
---|
public TransformationManager()
Method Detail |
---|
public Data transform(Object value, String objectType) throws Exception
value
- objectType
- TODO
Exception
public Data transform(Object value, String objectType, Map<String,Object> filterProperties) throws Exception
Exception
public Object transform(Data value, Class<?> clazz) throws Exception
value
- The incoming Data value to transform to DTO objectclazz
- The DTO object class represented by the Data value
Exception
public Object transform(Data value, Class<?> clazz, Map<String,Object> filterProperties) throws Exception
value
- The incoming Data value to transform to DTO objectclazz
- The DTO object class represented by the Data valuefilterProperties
- properties that can be consumed by the filters
Exception
public void applyInboundFilters(String dtoName, Object value, Map<String,Object> properties, Metadata metadata) throws Exception
dtoName
- The name of the dto represented by a Data value, for Dto values,
this can simply be the name of the dto classvalue
- The dto or data object to apply filters to
Exception
public void applyOutboundFilters(String dtoName, Object value, Map<String,Object> properties) throws Exception
dtoName
- The name of the dto represented by a Data value, for Dto values,
this can simply be the name of the dto classvalue
- The dto or data object to apply filters to
Exception
public Metadata getMetadata(String dtoName, Map<String,Object> filterProperties)
public void applyMetadataFilters(String dtoName, Metadata metadata, Map<String,Object> filterProperties)
public Metadata getUnfilteredMetadata(String dtoName)
public void setMetadataService(MetadataServiceImpl metadataService)
public DataBeanMapper getMapper()
public void setMapper(DataBeanMapper mapper)
@Deprecated public void setFilters(List<TransformFilter> filters)
filters
- public void setInboundFilters(List<TransformFilter> filters)
public void setOutboundFilters(List<TransformFilter> filters)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |