Package com.niyamit.spreedly

Source Code of com.niyamit.spreedly.ObjectFactory

package com.niyamit.spreedly;

import com.niyamit.spreedly.paymentmethods.CreditCard;
import com.niyamit.spreedly.paymentmethods.PaymentMethod;
import com.niyamit.spreedly.transactions.Transaction;
import javax.xml.bind.annotation.XmlRegistry;

/**
*
* @author bsneade
*/
@XmlRegistry
public class ObjectFactory {
   
    public Gateways createGateways() {
        return new Gateways();
    }
    public Gateway createGateway() {
        return new Gateway();
    }

    public Transaction createTransaction() {
        return new Transaction();
    }

    public PaymentMethod createPaymentMethod() {
        return new PaymentMethod();
    }

    public CreditCard createCreditCard() {
        return new CreditCard();
    }
   
}
TOP

Related Classes of com.niyamit.spreedly.ObjectFactory

TOP
Copyright © 2018 www.massapi.com. 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.