dangsn
2024-06-24 09d357963bda3048de8b672e1fe7fc151a181930
1
2
3
4
5
6
7
package org.jbpm.pvm.internal.lob;
 
public interface ClobStrategy {
 
  void set(char[] text, Lob lob);
  char[] get(Lob lob);
}