![JAR search and dependency download from the Maven repository](/logo.png)
net.klakegg.pkix.ocsp.builder.Property Maven / Gradle / Ivy
package net.klakegg.pkix.ocsp.builder;
/**
* @author erlend
*/
public class Property {
private final T defaultValue;
public static Property create() {
return new Property<>(null);
}
public static Property create(T defaultValue) {
return new Property<>(defaultValue);
}
private Property(T defaultValue) {
this.defaultValue = defaultValue;
}
public T getDefaultValue() {
return defaultValue;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy