blob: 52ea95c47ab0c4f6295117bfa1c19101746de1dc [file] [log] [blame]
// Copyright 2009, 2010 The Apache Software Foundation
//
// 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 org.apache.tapestry5.ioc.annotations;
import java.lang.annotation.*;
/**
* A special marker annotation which limits the search for possible services to just the <em>same</em> module containing
* the service being injected. Other marker annotations may also be applied. It is allowed on methods to
* support the @Contribute annotation (used as a preferred alternative to the older naming convention for
* identifying contribute methods and targetted services).
*/
@Target(
{ ElementType.PARAMETER, ElementType.FIELD, ElementType.METHOD })
@Retention(RetentionPolicy.RUNTIME)
@Documented
@UseWith(AnnotationUseContext.SERVICE)
public @interface Local
{
}