package at.gv.egovernment.moa.id.configuration.data; public class OAListElement { private long dataBaseID; private String oaIdentifier; private String oaFriendlyName; private String oaType; private boolean isActive; /** * @return the dataBaseID */ public long getDataBaseID() { return dataBaseID; } /** * @param dataBaseID the dataBaseID to set */ public void setDataBaseID(long dataBaseID) { this.dataBaseID = dataBaseID; } /** * @return the oaIdentifier */ public String getOaIdentifier() { return oaIdentifier; } /** * @param oaIdentifier the oaIdentifier to set */ public void setOaIdentifier(String oaIdentifier) { this.oaIdentifier = oaIdentifier; } /** * @return the oaFriendlyName */ public String getOaFriendlyName() { return oaFriendlyName; } /** * @param oaFriendlyName the oaFriendlyName to set */ public void setOaFriendlyName(String oaFriendlyName) { this.oaFriendlyName = oaFriendlyName; } /** * @return the oaType */ public String getOaType() { return oaType; } /** * @param oaType the oaType to set */ public void setOaType(String oaType) { this.oaType = oaType; } /** * @return the isActive */ public boolean isActive() { return isActive; } /** * @param isActive the isActive to set */ public void setActive(boolean isActive) { this.isActive = isActive; } public String getIsActive(){ return String.valueOf(isActive); } }