protected PreAuthResponseDMO typeCheck(Object value) throws DmcValueException {
if (value instanceof PreAuthResponseDMO)
return((PreAuthResponseDMO)value);
throw(new DmcValueException("Object of class: " + value.getClass().getName() + " passed where object compatible with PreAuthResponseDMO expected."));
}