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

net.authorize.data.xml.DriversLicense Maven / Gradle / Ivy

Go to download

Authorize.Net SDK includes standard payments, recurring billing, and customer profiles.

There is a newer version: 3.0.0
Show newest version
package net.authorize.data.xml;

import java.io.Serializable;
import java.util.Date;

import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement
public class DriversLicense  implements Serializable {

	private static final long serialVersionUID = 1L;

    private String number;
    private String state;
    private Date birth_date;
    public static String LICENSE_DATE_FORMAT = "yyyy-MM-dd";

    public DriversLicense(){
	}


	public Date getBirthDate() {
		return birth_date;
	}

	public void setBirthDate(String date){
		this.birth_date = net.authorize.util.DateUtil.getDateFromFormattedDate(date, LICENSE_DATE_FORMAT);
	}
	public void setBirthDate(Date birth_date) {
		this.birth_date = birth_date;
	}

	public String getNumber() {
		return number;
	}

	public void setNumber(String number) {
		this.number = number;
	}

	public String getState() {
		return state;
	}

	public void setState(String state) {
		this.state = state;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy