/* * Copyright (c) Blue Fish Development Group 1996-2005. All rights reserved. * * This version: * $Author: jduke $ * $Date: 2006/01/02 19:26:31 $ * $Id: IBfLogService.java,v 1.1 2006/01/02 19:26:31 jduke Exp $ */ /** * */ package com.bluefishgroup.sample.bof.sbo; import com.documentum.fc.client.IDfDocument; import com.documentum.fc.client.IDfService; import com.documentum.fc.common.DfException; /** * A simple SBO that provides methods for logging information about various actions. * * @author Jason Duke * @version $Revision: 1.1 $ */ public interface IBfLogService extends IDfService { /** * Logs a warning message indicating that the given document has been checked out, as well as * some information about the lock owner. * * @param document the document * @throws DfException */ public void logCheckout(String docbase, IDfDocument document) throws DfException; }