Class PreRenderUtil
- java.lang.Object
-
- org.sourceid.saml20.adapter.gui.event.PreRenderUtil
-
public class PreRenderUtil extends Object
-
-
Constructor Summary
Constructors Constructor Description PreRenderUtil()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FieldDescriptorfindField(List<FieldDescriptor> fieldDescriptorList, String name)For the given field descriptor name, find the field descriptor in the list.static TableDescriptorfindTable(List<TableDescriptor> tableDescriptorList, String name)For the given table descriptor name, find the table descriptor in the list.
-
-
-
Method Detail
-
findTable
public static TableDescriptor findTable(List<TableDescriptor> tableDescriptorList, String name)
For the given table descriptor name, find the table descriptor in the list.- Parameters:
tableDescriptorList- List of table descriptors to look in.name- Target name of the table descriptor to look for.- Returns:
- The
TableDescriptorthat matches the target string name.
-
findField
public static FieldDescriptor findField(List<FieldDescriptor> fieldDescriptorList, String name)
For the given field descriptor name, find the field descriptor in the list.- Parameters:
fieldDescriptorList- List of field descriptors to look in.name- Target name of the field descriptor to look for.- Returns:
- The
FieldDescriptorthat matches the target string name.
-
-