/**
 * <copyright> Copyright (c) 2006 by Know-Center, Graz, Austria </copyright>
 * 
 * This software is the confidential and proprietary information of Know-Center,
 * Graz, Austria. You shall not disclose such Confidential Information and shall
 * use it only in accordance with the terms of the license agreement you entered
 * into with Know-Center.
 * 
 * KNOW-CENTER MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF
 * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
 * NON-INFRINGEMENT. KNOW-CENTER SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY
 * LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS
 * DERIVATIVES.
 * 
 * $Id: ReplaceInfo.java,v 1.1 2006/08/25 17:10:08 wprinz Exp $
 */
package at.knowcenter.wag.egov.egiz.pdf;

import java.io.Serializable;
import java.util.List;

import at.knowcenter.wag.egov.egiz.sig.SignatureFieldDefinition;

/**
 * Holds the information requeired to replace a certain value in the document
 * completely.
 * 
 * @author wprinz
 */
public class ReplaceInfo implements Serializable
{

  /**
   * SVUID.
   */
  private static final long serialVersionUID = 7307210282876750431L;

  /**
   * The field definition of this value.
   */
  public SignatureFieldDefinition sfd = null;

  /**
   * The value itself.
   */
  public String value = null;

  /**
   * The list of Strings this value must be splitted to.
   */
  public List replaces = null;

  /**
   * The brev of this value.
   */
  public byte[] brev = null;

  /**
   * The encoding of this value.
   */
  public byte[] enc = null;

}