io.mosip.registration.controller.vo.ExceptionListVO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of registration-client Show documentation
Show all versions of registration-client Show documentation
Maven project of MOSIP Registration UI
package io.mosip.registration.controller.vo;
import javafx.beans.property.SimpleStringProperty;
/**
* The Class ExceptionListVO.
*
* @author Sravya Surampalli
* @since 1.0.0
*/
public class ExceptionListVO {
private SimpleStringProperty exceptionItem;
/**
* Instantiates a new exception list VO.
*
* @param exceptionItem the exception Item
*/
public ExceptionListVO(String exceptionItem) {
super();
this.exceptionItem = new SimpleStringProperty(exceptionItem);
}
/**
* @return the exceptionItem
*/
public String getExceptionItem() {
return exceptionItem.get();
}
/**
* @param exceptionItem the exceptionItem to set
*/
public void setExceptionItem(String exceptionItem) {
this.exceptionItem = new SimpleStringProperty(exceptionItem);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy