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

org.omnifaces.cdi.ContextParam Maven / Gradle / Ivy

There is a newer version: 4.4.1
Show newest version
/*
 * Copyright 2020 OmniFaces
 *
 * 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
 *
 *     https://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 org.omnifaces.cdi;

import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

import java.lang.annotation.Retention;
import java.lang.annotation.Target;

import javax.enterprise.util.Nonbinding;
import javax.inject.Qualifier;

import org.omnifaces.cdi.contextparam.ContextParamProducer;

/**
 * 

* The CDI annotation @{@link ContextParam} allows you to inject a web.xml context * parameter from the current application in a CDI managed bean. It's basically like * @ManagedProperty("#{initParam['some.key']}") private String someKey; * in a "plain old" JSF managed bean. *

* By default the name of the context parameter is taken from the name of the variable into which injection takes place. * The example below injects the context parameter with name foo. *

 * @Inject @ContextParam
 * private String foo;
 * 
*

* The name can be optionally specified via the name attribute, which shall more often be used as context * parameters may have a.o. periods and/or hyphens in the name, which are illegal in variable names. * The example below injects the context parameter with name foo.bar into a variable named bar. *

 * @Inject @ContextParm(name="foo.bar")
 * private String bar;
 * 
* * @since 2.2 * @author Bauke Scholtz * @see ContextParamProducer */ @Qualifier @Retention(RUNTIME) @Target({ METHOD, FIELD, PARAMETER }) public @interface ContextParam { /** * (Optional) The name of the context parameter. If not specified the name of the injection target field will be used. * * @return The name of the context parameter. */ @Nonbinding String name() default ""; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy