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

com.github.restup.path.ResourcePathsProvider Maven / Gradle / Ivy

There is a newer version: 0.0.5
Show newest version
package com.github.restup.path;

import java.util.List;
import com.github.restup.registry.Resource;

public interface ResourcePathsProvider {

    List getPaths(Resource resource);

    static ResourcePathsProvider empty() {
        return EmptyResourcePathsProvider.getInstance();
    }

    static ResourcePathsProvider allApiFields() {
        return new AllResourcePathsProvider(false, true);
    }

    static ResourcePathsProvider allFields() {
        return new AllResourcePathsProvider(true, true);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy