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

org.eobjects.analyzer.beans.api.Provided Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
/**
 * eobjects.org AnalyzerBeans
 * Copyright (C) 2010 eobjects.org
 *
 * This copyrighted material is made available to anyone wishing to use, modify,
 * copy, or redistribute it subject to the terms and conditions of the GNU
 * Lesser General Public License, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
 * for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this distribution; if not, write to:
 * Free Software Foundation, Inc.
 * 51 Franklin Street, Fifth Floor
 * Boston, MA  02110-1301  USA
 */
package org.eobjects.analyzer.beans.api;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Methods and fields with the @Provided annotation are used to let
 * AnalyzerBeans, TransformerBeans and FilterBeans retrieve service-objects such
 * as persistent collections, the current SchemaNavigator or DataContext.
 * 
 * This features ensures separation of concerns: The AnalyzerBeans framework
 * will make sure that persistence is handled and the bean-developer will not
 * have to worry about memory problems related to his/her collection(s).
 * 
 * Additionally Analyzerbeans can use the @Provided annotation to inject a
 * SchemaNavigator in order to perform metadata-based analysis. AnalyzerBeans
 * can also inject a DataContext, but this is generally discouraged for normal
 * use-cases since it will either be provided with the run(...)-method if the
 * AnalyzerBean is an ExploringAnalyzer or be out of scope if the AnalyzerBean
 * is a RowProcessingAnalyzer. For some use-cases it is helpful though, for
 * example initialization that requires some simple querying.
 * 
 * Valid types for @Provided annotated fields and method arguments are:
 * 
    *
  • List
  • *
  • Set
  • *
  • Map
  • *
  • org.eobjects.analyzer.storage.CollectionFactory
  • *
  • org.eobjects.analyzer.storage.RowAnnotationFactory
  • *
  • org.eobjecta.analyzer.util.SchemaNavigator
  • *
  • org.apache.metamodel.DataContext
  • *
* Generic/parameterized types for the List, Set or Map can be any of: *
    *
  • Boolean
  • *
  • Byte
  • *
  • Short
  • *
  • Integer
  • *
  • Long
  • *
  • Float
  • *
  • Double
  • *
  • Character
  • *
  • String
  • *
  • Byte[] or byte[]
  • *
*/ @Retention(RetentionPolicy.RUNTIME) @Target({ ElementType.FIELD }) @Documented @Inherited public @interface Provided { }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy