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

io.oopsie.sdk.Applications Maven / Gradle / Ivy

There is a newer version: 1.1
Show newest version
package io.oopsie.sdk;

import io.oopsie.sdk.error.NotFoundInModelException;
import java.util.Map;
import java.util.stream.Stream;

/**
 * Holds all applications for a {@link Site}.
 */
public class Applications {
    
    private final Map applications;

    /**
     * Creates an new Applications.
     * @param applications the applications
     */
    Applications(Map applications) {
        this.applications = applications;
    }
    
    /**
     * Returns the named {@link Application}.
     * @param name the application name
     * @return an application
     * @throws NotFoundInModelException if application not found
     */
    public final Application getApplication(String name) throws NotFoundInModelException {
        if(!applications.containsKey(name)) {
            throw new NotFoundInModelException("'" + name + "' not part of this site model.");
        }
        return this.applications.get(name);
    }
    
    /**
     * Stream representation of this Applications object.
     * @return a stream of apps.
     */
    public final Stream stream() {
        return applications.values().stream();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy