
org.ow2.bonita.pvm.internal.lob.ClobStrategyText Maven / Gradle / Ivy
package org.ow2.bonita.pvm.internal.lob;
public class ClobStrategyText implements ClobStrategy {
public char[] get(Clob clob) {
return clob.extractChars();
}
public void set(char[] chars, Clob clob) {
String text = new String(chars);
clob.setText(text);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy