Example usage for java.io Closeable interface-usage

List of usage examples for java.io Closeable interface-usage

Introduction

In this page you can find the example usage for java.io Closeable interface-usage.

Usage

From source file it.anyplace.sync.bep.FolderBrowser.java

/**
 *
 * @author aleph
 */
public final class FolderBrowser implements Closeable {

From source file ch.ledcom.jpreseed.web.TemporaryPreseedStore.java

@NotThreadSafe
public class TemporaryPreseedStore implements Closeable {

    private final Logger logger = LoggerFactory.getLogger(getClass());

    private final Path tempDir;

From source file org.apache.jackrabbit.core.Tail.java

/**
 * <code>Tail</code> is a test utility class to tail and grep a text file.
 */
public class Tail implements Closeable {

    private final String grep;

From source file com.dsclab.loader.validate.DBClient.java

/**
 *
 * @author Shiou
 */
public class DBClient implements Closeable {
    private static final Log LOG = LogFactory.getLog(DBClient.class);

From source file ezbake.security.common.core.EzSecurityClient.java

/**
 * User: jhastings
 * Date: 8/21/14
 * Time: 9:29 AM
 */
public interface EzSecurityClient extends Closeable {

From source file org.apache.hadoop.hdfs.storageservice.server.ClientProxyService.java

/**
 * Main class in storage service layer, creates client's endpoints,
 * NameNodes' endpoints and connects them.
 */
public class ClientProxyService implements Closeable {
    private final static Log LOG = LogFactory.getLog(ClientProxyService.class);

From source file org.slc.sli.bulk.extract.files.writer.JsonFileWriter.java

/**
 * Extract's Data File Class.
 * @author npandey
 *
 */
public class JsonFileWriter implements Closeable {

From source file org.xwiki.xar.XarFile.java

/**
 * @version $Id: 458af0038e6dfdd11f9db93589ca3c17c303f74c $
 * @since 5.4RC1
 */
public class XarFile implements Closeable {
    private File file;

From source file com.googlecode.msidor.springframework.integration.files.CompositeCascadeFileListFilter.java

/**
 * Simple {@link FileListFilter} that predicates its matches against <b>all</b> of the
 * configured {@link FileListFilter} in cascade way.
 * 
 * This is the customized version of org.springframework.integration.file.filters.CompositeFileListFilter.
 * The difference between this implementation is in filterFiles method.

From source file com.linkedin.pinot.core.index.writer.impl.FixedBitWidthRowColDataFileWriter.java

/**
 * Represents a datatable where each col contains values that can be represented
 * using a fix set of bits.
 *
 *
 */