Examples of changeTransactionProperties()


Examples of org.tmatesoft.svn.core.internal.io.fs.FSFS.changeTransactionProperties()

            if (myResource.isBaseLined()) {
                if (myResource.isWorking()) {
                    FSTransactionInfo txn = myResource.getTxnInfo();
                    SVNProperties props = new SVNProperties();
                    props.put(reposPropName, value);
                    fsfs.changeTransactionProperties(txn.getTxnId(), props);
                } else {
                    SVNRepository repos = myResource.getRepository();
                    repos.setRevisionPropertyValue(myResource.getRevision(), reposPropName, value);
                    //TODO: maybe add logging here
                }
View Full Code Here

Examples of org.tmatesoft.svn.core.internal.io.fs.FSFS.changeTransactionProperties()

            if (myResource.isBaseLined()) {
                if (myResource.isWorking()) {
                    FSTransactionInfo txn = myResource.getTxnInfo();
                    SVNProperties props = new SVNProperties();
                    props.put(reposPropName, (SVNPropertyValue) null);
                    fsfs.changeTransactionProperties(txn.getTxnId(), props);
                } else {
                    SVNRepository repos = myResource.getRepository();
                    repos.setRevisionPropertyValue(myResource.getRevision(), reposPropName, null);
                }
            } else {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.