org.nohope.jaxb2.plugin.metadata.PasstroughGetter Maven / Gradle / Ivy
package org.nohope.jaxb2.plugin.metadata;
/**
* @author Ketoth Xupack
* @since 2013-10-30 17:57
*/
public class PasstroughGetter implements IValueGetter {
private final R value;
public PasstroughGetter(final R value) {
this.value = value;
}
@Override
public R get() throws Exception {
return value;
}
}