org.bdware.doip.audit.client.DoIdWrapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of doip-audit-tool Show documentation
Show all versions of doip-audit-tool Show documentation
doip audit tool developed by bdware
package org.bdware.doip.audit.client;
public class DoIdWrapper {
String doid;
public DoIdWrapper(String doid) {
this.doid = doid;
}
public void setDoId(String doid) {
this.doid = doid;
}
public String getDoId() {
return doid;
}
}