001: /**
002: * EasyBeans
003: * Copyright (C) 2007 Bull S.A.S.
004: * Contact: easybeans@ow2.org
005: *
006: * This library is free software; you can redistribute it and/or
007: * modify it under the terms of the GNU Lesser General Public
008: * License as published by the Free Software Foundation; either
009: * version 2.1 of the License, or any later version.
010: *
011: * This library is distributed in the hope that it will be useful,
012: * but WITHOUT ANY WARRANTY; without even the implied warranty of
013: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
014: * Lesser General Public License for more details.
015: *
016: * You should have received a copy of the GNU Lesser General Public
017: * License along with this library; if not, write to the Free Software
018: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
019: * USA
020: *
021: * --------------------------------------------------------------------------
022: * $Id: ENCBindingHolder.java 2067 2007-11-27 10:03:12Z benoitf $
023: * --------------------------------------------------------------------------
024: */package org.ow2.easybeans.deployment.enc;
025:
026: import java.util.ArrayList;
027: import java.util.List;
028:
029: import org.ow2.easybeans.deployment.api.EZBENCBindingHolder;
030: import org.ow2.easybeans.deployment.api.IBinding;
031: import org.ow2.easybeans.deployment.api.IJAnnotationResource;
032: import org.ow2.easybeans.deployment.api.IJavaxPersistenceContext;
033: import org.ow2.easybeans.deployment.api.IJavaxPersistenceUnit;
034:
035: /**
036: * Class that can manage different kind of binding used in ENC.
037: * @author Florent BENOIT
038: */
039: public class ENCBindingHolder implements EZBENCBindingHolder {
040:
041: /**
042: * List of binding for Persistence context (Entity Manager).
043: */
044: private List<IBinding<IJavaxPersistenceContext>> persistenceContextBindings = null;
045:
046: /**
047: * List of binding for Persistence unit (Entity Manager Factory).
048: */
049: private List<IBinding<IJavaxPersistenceUnit>> persistenceUnitBindings = null;
050:
051: /**
052: * List of binding for Javax.Annotation.Resources.
053: */
054: private List<IBinding<IJAnnotationResource>> resourceBindings = null;
055:
056: /**
057: * Default constructor.
058: */
059: public ENCBindingHolder() {
060: this .persistenceContextBindings = new ArrayList<IBinding<IJavaxPersistenceContext>>();
061: this .persistenceUnitBindings = new ArrayList<IBinding<IJavaxPersistenceUnit>>();
062: this .resourceBindings = new ArrayList<IBinding<IJAnnotationResource>>();
063: }
064:
065: /**
066: * Add a given persistence context binding.
067: * @param binding the given binding.
068: */
069: public void addPersistenceContextBinding(
070: final IBinding<IJavaxPersistenceContext> binding) {
071: this .persistenceContextBindings.add(binding);
072: }
073:
074: /**
075: * @return the list of persistence context bindings.
076: */
077: public List<IBinding<IJavaxPersistenceContext>> getPersistenceContextBindings() {
078: return persistenceContextBindings;
079: }
080:
081: /**
082: * Add a given persistence unit binding.
083: * @param binding the given binding.
084: */
085: public void addPersistenceUnitBinding(
086: final IBinding<IJavaxPersistenceUnit> binding) {
087: this .persistenceUnitBindings.add(binding);
088: }
089:
090: /**
091: * @return the list of persistence unit bindings.
092: */
093: public List<IBinding<IJavaxPersistenceUnit>> getPersistenceUnitBindings() {
094: return persistenceUnitBindings;
095: }
096:
097: /**
098: * Add a given resource binding.
099: * @param binding the given binding.
100: */
101: public void addResourceBinding(
102: final IBinding<IJAnnotationResource> binding) {
103: this .resourceBindings.add(binding);
104: }
105:
106: /**
107: * @return the list of resource bindings.
108: */
109: public List<IBinding<IJAnnotationResource>> getResourceBindings() {
110: return resourceBindings;
111: }
112:
113: }
|