/* * Milyn - Copyright (C) 2006 - 2010 * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License (version 2.1) as published by the Free Software * Foundation. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * See the GNU Lesser General Public License for more details: * http://www.gnu.org/licenses/lgpl.txt */ package org.smooks.model.javabean; import java.util.List; /** * Value binding configuration. * * @author <a href="mailto:tom.fennelly@gmail.com">tom.fennelly@gmail.com</a> */ public class Value extends Binding { private String data; private String dataNS; private String decoder; private String defaultVal; private List<DecodeParam> decodeParams; public String getData() { return data; } public void setData(String data) { this.data = data; } public String getDataNS() { return dataNS; } public void setDataNS(String dataNS) { this.dataNS = dataNS; } public String getDecoder() { return decoder; } public void setDecoder(String decoder) { this.decoder = decoder; } public String getDefaultVal() { return defaultVal; } public void setDefaultVal(String defaultVal) { this.defaultVal = defaultVal; } public List<DecodeParam> getDecodeParams() { return decodeParams; } public void setDecodeParams(List<DecodeParam> decodeParams) { this.decodeParams = decodeParams; } }