Package net.sf.ofx4j.domain.data.common

Examples of net.sf.ofx4j.domain.data.common.Status


          CreditCardStatementResponse creditCardStatementResponse = new CreditCardStatementResponse();
          creditCardStatementResponse.setAccount(creditCardAccountDetails);
          creditCardStatementResponse.setCurrencyCode("BRL");
          creditCardStatementResponse.setTransactionList(transactionList);

          Status status = new Status();
          status.setCode(Status.KnownCode.SUCCESS);
          status.setSeverity(Status.Severity.INFO);

          CreditCardStatementResponseTransaction statementResponse = new CreditCardStatementResponseTransaction();
          statementResponse.setClientCookie(UUID.randomUUID().toString());
          statementResponse.setStatus(status);
          statementResponse.setUID(UUID.randomUUID().toString());
View Full Code Here

TOP

Related Classes of net.sf.ofx4j.domain.data.common.Status

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.