package com.tandbergtv.metadatamanager.validation.Schematron;

/**
 * Constants used in schematron rule definition file
 * 
 * @author spuranik
 * 
 */
public class Constants {

	// delimiter between error code and error field list in the schematron rule
	public static String INFO_DELIMITER = ",";

	/* parsing for error message string in schematron file */
	public static String ERROR_TEXT_DELIMITER = ":";
	public static int ERROR_CODE_POSITION = 0;
	public static int ERROR_FIELDS_POSITION = 1;
	public static int ERROR_INFO_POSITION = 2;
	public static int ERROR_MAX_ITEM_COUNT = 3;

}
