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

org.jumpmind.symmetric.fs.client.NoOpServerNodeLocker Maven / Gradle / Ivy

There is a newer version: 3.4.9
Show newest version
package org.jumpmind.symmetric.fs.client;

import org.jumpmind.symmetric.fs.config.Node;

public class NoOpServerNodeLocker implements IServerNodeLocker {

    public boolean lock(Node serverNode) {
        return true;
    }

    public boolean unlock(Node serverNode) {
        return true;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy