001    /*
002     * file CcSymlink.java
003     *
004     * Licensed Materials - Property of IBM
005     * Restricted Materials of IBM 
006     * com.ibm.rational.wvcm.stp.cc.CcSymlink
007     *
008     * (C) Copyright IBM Corporation 2008.  All Rights Reserved.
009     * Note to U.S. Government Users Restricted Rights:  Use, duplication or 
010     * disclosure restricted by GSA ADP  Schedule Contract with IBM Corp.
011     */
012    package com.ibm.rational.wvcm.stp.cc;
013    
014    import javax.wvcm.ControllableSymbolicLink;
015    
016    /**
017     * A proxy for a ClearCase symbolic link.
018     * <p>
019     * A VOB symbolic link is a separate, unversioned object. It contains a
020     * character string, the link text, in the form of a path name.
021     * <p>
022     * Since all CM API operations automatically resolve a symbolic link to its
023     * target, proxies of this kind will only be created when such a target is
024     * unreachable.
025     */
026    public interface CcSymlink extends CcFile, ControllableSymbolicLink {
027    }