defineDecorator(LargeTransactionDecorator.class);
AbstractOwbBean<AccountComponent> component = defineManagedBean(AccountComponent.class);
WebBeansContext.getInstance().getContextFactory().initRequestContext(null);
AccountComponent account = getManager().getInstance(component);
account.deposit(new BigDecimal(1500));
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() });