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

net.sf.fmj.registry.RegistryIO Maven / Gradle / Ivy

There is a newer version: 1.0.2-jitsi
Show newest version
package net.sf.fmj.registry;

import java.io.*;

/**
 * Interface to read/write registry contents from/to somewhere.
 *
 * @author Ken Larson
 * @author Warren Bloomer
 *
 */
interface RegistryIO
{
    public void load(InputStream is) throws IOException;

    public void write(OutputStream os) throws IOException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy