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

com.aspectran.core.context.env.Environment Maven / Gradle / Ivy

There is a newer version: 8.1.5
Show newest version
/*
 * Copyright (c) 2008-2022 The Aspectran Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.aspectran.core.context.env;

import com.aspectran.core.activity.Activity;

/**
 * Interface representing the environment in which the current application is running.
 * Models two key aspects of the application environment: profiles and properties.
 */
public interface Environment {

    /**
     * Returns the set of profiles explicitly made active for this environment.
     * @return the set of profiles explicitly made active
     */
    String[] getActiveProfiles();

    /**
     * Returns the set of profiles to be active by default when no active profiles have
     * been set explicitly.
     * @return the set of profiles to be active by default
     */
    String[] getDefaultProfiles();

    /**
     * Return whether one or more of the given profiles is active or, in the case of no
     * explicit active profiles, whether one or more of the given profiles is included in
     * the set of default profiles. If a profile begins with '!' the logic is inverted,
     * i.e. the method will return true if the given profile is not active.
     * For example, 
env.acceptsProfiles("p1", "!p2")
will * return {@code true} if profile 'p1' is active or 'p2' is not active. * @param profiles the given profiles * @return true if the given profile is active; false otherwise * @throws IllegalArgumentException if called with zero arguments * or if any profile is {@code null}, empty or whitespace-only * @see #getActiveProfiles * @see #getDefaultProfiles */ boolean acceptsProfiles(String... profiles); /** * Returns the value of the property on environment via the currently available activity. * @param the type of the value * @param name the given property name * @return the value of the property on environment */ T getProperty(String name); /** * Returns the value of the property on environment via the specified activity. * @param the type of the value * @param name the given property name * @param activity the activity * @return the value of the property on environment */ T getProperty(String name, Activity activity); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy