blob: 2fb4cab9df128ffb016b4d6bc5b499b88aa01bd9 [file] [log] [blame]
Bob Lee45014132009-06-29 17:29:57 +00001/*
2 * Copyright (C) 2009 The JSR-330 Expert Group
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Bob Leec92d8c32009-04-29 00:39:35 +000017package javax.inject;
Bob Lee89db0282009-04-04 21:29:59 +000018
19import java.lang.annotation.Retention;
20import java.lang.annotation.Documented;
21import static java.lang.annotation.RetentionPolicy.RUNTIME;
22
23/**
24 * String-based {@linkplain Qualifier qualifier}.
Bob Leec5b72dc2009-09-22 00:02:51 +000025 *
26 * <p>Example usage:
27 *
28 * <pre>
29 * public class Car {
30 * &#064;Inject <b>@Named("driver")</b> Seat driverSeat;
31 * &#064;Inject <b>@Named("passenger")</b> Seat passengerSeat;
32 * ...
33 * }</pre>
Bob Lee89db0282009-04-04 21:29:59 +000034 */
35@Qualifier
36@Documented
37@Retention(RUNTIME)
38public @interface Named {
39
40 /** The name. */
Bob Lee0220ab72009-06-26 21:55:00 +000041 String value() default "";
Bob Lee89db0282009-04-04 21:29:59 +000042}