All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jp.webpay.model.AbstractModel Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
package jp.webpay.model;

import jp.webpay.api.WebPayClient;

import java.util.Date;

abstract class AbstractModel {
    protected WebPayClient client;

    protected Date timestampToDate(Long timestamp) {
        if (timestamp == null) {
            return null;
        }
        return new Date(timestamp * 1000);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy