![JAR search and dependency download from the Maven repository](/logo.png)
org.linguafranca.pwdb.kdbx.jaxb.base.ValueBinding Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of KeePassJava2-jaxb Show documentation
Show all versions of KeePassJava2-jaxb Show documentation
Contains a JAXB implementation for KDBX.
package org.linguafranca.pwdb.kdbx.jaxb.base;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlTransient;
import javax.xml.bind.annotation.XmlValue;
/**
* Ancestor class of StringField.Value, providing a way of flagging protection
* separate from @Protected and @ProtectInMemory
*/
@XmlAccessorType(XmlAccessType.FIELD)
public abstract class ValueBinding {
@XmlTransient
public boolean protectOnOutput;
@XmlValue
public String value;
public String getValue(){
return value;
}
public void setValue(String string){
value = string;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy