001 /*
002 * file CcTriggerType.java
003 *
004 * Licensed Materials - Property of IBM
005 * Restricted Materials of IBM
006 *
007 * com.ibm.rational.wvcm.stp.cc.CcTriggerType
008 *
009 * (C) Copyright IBM Corporation 2004, 2008. All Rights Reserved.
010 * Note to U.S. Government Users Restricted Rights: Use, duplication or
011 * disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
012 */
013
014 package com.ibm.rational.wvcm.stp.cc;
015
016 /**
017 * <p>A proxy for a ClearCase trigger type.
018 * </p>
019 * <p>ClearCase triggers let you customize and extend the behavior
020 * of ClearCase by associating pre-op and post-op actions with
021 * particular operations on ClearCase objects. These actions can
022 * be either custom scripts provided by you, or built-in actions
023 * supported directly by triggers. For instance, you could create
024 * a "checkin post-op" trigger that executes a Perl script that
025 * sends email to your development team whenever a particular file
026 * is checked in.
027 * </p>
028 * <p>For general trigger information, see the ClearCase "Guide to Managing Software Projects"
029 * manual. See the ClearCase "mktrtype" man page for help with creating triggers.
030 * </p>
031 */
032 public interface CcTriggerType extends CcResource
033 {
034 }