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

net.java.truevfs.kernel.impl.DefaultManagerFactory Maven / Gradle / Ivy

/*
 * Copyright © 2005 - 2021 Schlichtherle IT Services.
 * All rights reserved. Use is subject to license terms.
 */
package net.java.truevfs.kernel.impl;

import global.namespace.service.wight.annotation.ServiceImplementation;
import net.java.truevfs.kernel.spec.FsManager;
import net.java.truevfs.kernel.spec.spi.FsManagerFactory;

/**
 * Creates a default file system manager.
 *
 * @author Christian Schlichtherle
 */
@ServiceImplementation(priority = -100)
public final class DefaultManagerFactory implements FsManagerFactory {

    @Override
    public FsManager get() {
        return new DefaultManager();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy