/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package dataHolderPackage;

import java.sql.Date;
import java.sql.Time;

/**
 *
 * @author Alexander The 1st
 */
public class PhotoExpirationLogHolder {
    private Integer i;
    private Date d;
    private Time t;
    
    public PhotoExpirationLogHolder(Integer iA, Date dA, Time tA){
        i = iA;
        d = dA;
        t = tA;
    }
    
    public Integer getIdentifier(){
        return i;
    }
    public Date getDate(){
        return d;
    }
    public Time getTime(){
        return t;
    } 
}
