com.genexus.xml.ws.Holder Maven / Gradle / Ivy
package com.genexus.xml.ws;
public class Holder{
javax.xml.ws.Holder holder;
public Holder() {
holder = new javax.xml.ws.Holder();
}
public T getValue() {
return holder.value;
}
public void setValue(T value) {
holder.value = value;
}
public javax.xml.ws.Holder getWrappedClass() {
return holder;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy