public SaslResponse construct(Object underlying)
{
if(underlying instanceof List)
{
List list = (List) underlying;
SaslResponse obj = new SaslResponse();
int position = 0;
final int size = list.size();
if(position < size)
{
Object val = list.get(position);
position++;
if(val != null)
{
try
{
obj.setResponse( (Binary) val );
}
catch(ClassCastException e)
{
// TODO Error