public ModelResult execute(Object source, Object target)
throws ModelException {
Integer key = getKeyInteger();
if (key==null) {
throw new ModelParameterException();
}
Collection result = null;
result = Access.searchLast(target,key.intValue());
ModelResult modelResult = new ModelResultBase(result);
modelResult.setDescription(key.toString(),PROPERTY);