001 /*
002 * file CcTask.java
003 *
004 * Licensed Materials - Property of IBM
005 * Restricted Materials of IBM
006 *
007 * com.ibm.rational.wvcm.stp.cc.CcTask
008 *
009 * © Copyright IBM Corporation 2011. All Rights Reserved.
010 *
011 * Note to U.S. Government Users Restricted Rights: Use, duplication or
012 * disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
013 */
014
015 package com.ibm.rational.wvcm.stp.cc;
016
017 /**
018 * Interface for an aggregate object to hold information
019 * about a CM task as stored in ClearCase. May be from
020 * any system which can represent tasks as URIs such as
021 * an RTC work item.
022 *
023 * Despite the name, this is not derived from the WVCM Task
024 * interface as it is not a resource.
025 */
026 public interface CcTask {
027
028 /**
029 * Retrieve the URI that specifies the task.
030 */
031 public String getURI();
032
033 }