/* * Copyright 2000-2013 Enonic AS * http://www.enonic.com/license */ package com.enonic.cms.core.log; public interface LogService { LogEntryResultSet getLogEntries( LogEntrySpecification spec, String orderBy, int count, int index ); LogEntryKey storeNew( StoreNewLogEntryCommand command ); }