kg.apc.emulators.FileLockEmul Maven / Gradle / Ivy
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package kg.apc.emulators;
import java.io.IOException;
import java.nio.channels.FileChannel;
import java.nio.channels.FileLock;
import org.apache.jorphan.logging.LoggingManager;
import org.apache.log.Logger;
class FileLockEmul extends FileLock {
private static final Logger log = LoggingManager.getLoggerForClass();
public FileLockEmul() {
super((FileChannel) null, 0, 0, false);
}
@Override
public boolean isValid() {
return true;
}
@Override
public void release() throws IOException {
log.debug("Release lock");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy