001 /*
002 * Licensed Materials - Property of IBM
003 * Restricted Materials of IBM
004 *
005 * com.ibm.rational.wvcm.stp.cc.CcListener
006 *
007 * (C) Copyright IBM Corporation 2010, 2011. All Rights Reserved.
008 * Note to U.S. Government Users Restricted Rights: Use, duplication or
009 * disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
010 */
011 package com.ibm.rational.wvcm.stp.cc;
012
013 /**
014 * A base interface for a callback listener for CM API operations
015 * that must report back to the caller.
016 */
017 public interface CcListener {
018
019 /**
020 * Notify the user of some action done.
021 * @param msg Status message
022 */
023 public void notify(String msg);
024
025 }