blob: 6d888ff84a5559bcc536657d6d3217f06487a9f6 [file] [log] [blame]
/**********************************************************************************************************************
* Copyright (c) 2008, 2011 Attensity Europe GmbH and brox IT Solutions GmbH. All rights reserved. This program and the
* accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this
* distribution, and is available at http://www.eclipse.org/legal/epl-v10.html
*
* Contributors: Andreas Weber (Attensity Europe GmbH) - initial implementation
**********************************************************************************************************************/
package org.eclipse.smila.taskworker;
import org.eclipse.smila.taskmanager.Task;
/** Provides TaskLog objects. */
public interface TaskLogFactory {
/**
* @return TaskLog for given task.
*/
TaskLog getTaskLog(Task task);
}