String thisAttrName = null;
SessionAttributeMetadata.Operation thisAttrOp = null;
Object thisAttrVal = null;
Iterator it = attributeList.iterator();
while (it.hasNext()) {
SessionAttributeMetadata nextAttrMetadata = (SessionAttributeMetadata)it.next();
thisAttrName = nextAttrMetadata.getAttributeName();
thisAttrOp = nextAttrMetadata.getOperation();
byte[] nextAttrState = nextAttrMetadata.getState();
thisAttrVal = null;
try {
thisAttrVal = getAttributeValue(nextAttrState);
} catch (ClassNotFoundException ex1) {
//FIXME log?