1 package org.ejbca.core.model.log; 2 3 /** 4 * @version $Id: LogConstants.java,v 1.3 2006/12/22 10:39:11 anatom Exp $ 5 */ 6 public interface LogConstants { 7 8 /** Constant limiting thenumber of rows returned when querying logfiles to be viewed by in the admin-GUI 9 */ 10 public static final int MAXIMUM_QUERY_ROWCOUNT = Integer.parseInt("@log.maxqueryrowcount@"); 11 12 /** 13 * Constant containing caid that couldn't be determined in any other way. Log events can only be viewed. 14 * by superadministrator. 15 */ 16 public static final int INTERNALCAID = 0; 17 } 18