Summary Table

Categories Total Count
PII 0
URL 0
DNS 0
EKL 0
IP 0
PORT 0
VsID 0
CF 0
AI 0
VPD 0
PL 0
Other 0

File Content

package gov.va.med.pbm.ampl.model;

import java.io.Serializable;
import java.time.OffsetDateTime;

/**
* TODO Unsure how this maps to FHIR The VaccineInfoStatement class associated with the Immunization class.
*
* @author AJ Magdub
* @since 1.0
*/
public class VaccineInfoStatement implements Serializable {

private static final long serialVersionUID = 449884680071736416L;

private String name;

private OffsetDateTime editionDate;

private String editionLang;

/**
* Gets the name.
*
* @return the name
*/
public String getName() {
return this.name;
}

/**
* Sets the name.
*
* @param name the name
*/
public void setName(String name) {
this.name = name;
}

/**
* Gets the editionDate.
*
* @return the editionDate
*/
public OffsetDateTime getEditionDate() {
return this.editionDate;
}

/**
* Sets the editionDate.
*
* @param editionDate the editionDate
*/
public void setEditionDate(OffsetDateTime editionDate) {
this.editionDate = editionDate;
}

/**
* Gets the editionLang.
*
* @return the editionLang
*/
public String getEditionLang() {
return this.editionLang;
}

/**
* Sets the editionLang.
*
* @param editionLang the editionLang
*/
public void setEditionLang(String editionLang) {
this.editionLang = editionLang;
}
}