001/* 002* Licensed Materials - Property of IBM 003* Restricted Materials of IBM 004* 005* com.ibm.rational.wvcm.stp.cc.CcAttribute 006* 007* (C) Copyright IBM Corporation 2012, 2014. 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*/ 011package com.ibm.rational.wvcm.stp.cc; 012 013/** 014 * Custom task provider configuration options for UCM ClearCase 015 * 016 */ 017public interface CcTaskProviderOptionsUcm extends CcTaskProviderOptions { 018 019 /** 020 * Returns the activity format string 021 * @return activity format 022 */ 023 public String getActivityFormat(); 024 025 /** 026 * Returns true if a task link is required (CMI policy) 027 * @return true or false 028 */ 029 public boolean getRequireTask(); 030}