All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.tigris.subversion.javahl.JavaHLPropertyData Maven / Gradle / Ivy

Go to download

The only pure Java Subversion library in the world, formerly known as JavaSVN

The newest version!
/*
 * ====================================================================
 * Copyright (c) 2004-2006 TMate Software Ltd.  All rights reserved.
 *
 * This software is licensed as described in the file COPYING, which
 * you should have received as part of this distribution.  The terms
 * are also available at http://svnkit.com/license.html
 * If newer versions of this license are posted there, you may use a
 * newer version instead, at your option.
 * ====================================================================
 */
package org.tigris.subversion.javahl;

import org.tmatesoft.svn.core.javahl.SVNClientImpl;


/**
 * @version 1.1.0
 * @author  TMate Software Ltd.
 */
public class JavaHLPropertyData extends PropertyData {

    private SVNClientImpl myClientImpl;

    JavaHLPropertyData(SVNClientImpl clientImpl, SVNClient cl, String p, String n, String v, byte[] d) {
        super(cl, p, n, v, d);
        myClientImpl = clientImpl;
    }

    public void remove(boolean recurse) throws ClientException {
        if (myClientImpl != null) {
            myClientImpl.propertyRemove(getPath(), getName(), recurse);
        } else {
            super.remove(recurse);
        }
    }

    public void setValue(byte[] newValue, boolean recurse) throws ClientException {
        if (myClientImpl != null) {
            myClientImpl.propertySet(getPath(), getName(), newValue, recurse);
        } else {
            super.remove(recurse);
        }
    }

    public void setValue(String newValue, boolean recurse) throws ClientException {
        if (myClientImpl != null) {
            myClientImpl.propertySet(getPath(), getName(), newValue, recurse);
        } else {
            super.remove(recurse);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy