Package com.liferay.faces.demos.dto

Examples of com.liferay.faces.demos.dto.PaymentType


  private List<PaymentType> paymentTypes;

  public PaymentTypeServiceMockImpl() {

    this.paymentTypes = new ArrayList<PaymentType>();
    this.paymentTypes.add(new PaymentType(1, "visa"));
    this.paymentTypes.add(new PaymentType(1, "mastercard"));
    this.paymentTypes.add(new PaymentType(1, "amex"));
    this.paymentTypes.add(new PaymentType(1, "discover"));
    this.paymentTypes.add(new PaymentType(1, "paypal"));
  }
View Full Code Here

TOP

Related Classes of com.liferay.faces.demos.dto.PaymentType

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.