src/java/org/apache/ivy/plugins/repository/sftp/SFTPResource.java [51:63]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public long getLastModified() {
        init();
        return lastModified;
    }

    public long getContentLength() {
        init();
        return contentLength;
    }

    public boolean exists() {
        init();
        return exists;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/java/org/apache/ivy/plugins/repository/vfs/VfsResource.java [145:168]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public long getLastModified() {
        init();
        return lastModified;
    }

    /**
     * Get the size of the resource
     *
     * @return a <code>long</code> representing the size of the resource (in bytes).
     */
    public long getContentLength() {
        init();
        return contentLength;
    }

    /**
     * Flag indicating whether a resource is available for querying
     *
     * @return <code>true</code> if the resource is available for querying, <code>false</code>
     *         otherwise.
     */
    public boolean exists() {
        init();
        return exists;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



