other/inca-xml2csv/trunk/src/net/sf/basedb/inca/Masker.java

Code
Comments
Other
Rev Date Author Line
4191 31 Oct 16 nicklas 1 package net.sf.basedb.inca;
4191 31 Oct 16 nicklas 2
4191 31 Oct 16 nicklas 3 /**
4191 31 Oct 16 nicklas 4   Mask output values that should not be included in the out file.
4191 31 Oct 16 nicklas 5   @author nicklas
4191 31 Oct 16 nicklas 6   @since 1.1
4191 31 Oct 16 nicklas 7 */
4191 31 Oct 16 nicklas 8 public interface Masker 
4191 31 Oct 16 nicklas 9 {
4191 31 Oct 16 nicklas 10   /**
4191 31 Oct 16 nicklas 11     Mask the input value.
4191 31 Oct 16 nicklas 12   */
4191 31 Oct 16 nicklas 13   public String getMaskedValue(String value);
4191 31 Oct 16 nicklas 14 }