account.withdraw(new BigDecimal(3000));
Set<Type> apiTyeps = new HashSet<Type>();
apiTyeps.add(Account.class);
List<Decorator<?>> decs = getManager().resolveDecorators(apiTyeps, new Annotation[] { new DefaultLiteral() });
LargeTransactionDecorator dec = (LargeTransactionDecorator) getManager().getInstance(decs.get(0));
Assert.assertEquals(null, dec.getDepositeAmount());
Assert.assertEquals(null, dec.getWithDrawAmount());