org.broadleafcommerce.openadmin.server.service.persistence.entitymanager.annotation
Annotation Type BroadleafPersistenceContext


@Target(value={TYPE,METHOD,FIELD})
@Retention(value=RUNTIME)
public @interface BroadleafPersistenceContext


Optional Element Summary
 java.lang.String name
          (Optional) The name by which the entity manager is to be accessed in the environment referencing context; not needed when dependency injection is used.
 javax.persistence.PersistenceProperty[] properties
          (Optional) Properties for the container or persistence provider.
 java.lang.String sandBoxUnitName
          (Optional) The name of the sand box persistence unit as defined in the persistence.xml file.
 java.lang.String unitName
          (Optional) The name of the persistence unit as defined in the persistence.xml file.
 

name

public abstract java.lang.String name
(Optional) The name by which the entity manager is to be accessed in the environment referencing context; not needed when dependency injection is used.

Default:
""

unitName

public abstract java.lang.String unitName
(Optional) The name of the persistence unit as defined in the persistence.xml file. If the unitName element is specified, the persistence unit for the entity manager that is accessible in JNDI must have the same name.

Default:
""

sandBoxUnitName

public abstract java.lang.String sandBoxUnitName
(Optional) The name of the sand box persistence unit as defined in the persistence.xml file. If the sandBoxUnitName element is specified, the persistence unit for the entity manager that is accessible in JNDI must have the same name. Sand Boxes are a unique concept to Broadleaf Commerce and represent a repository for change sets generated through the Broadleaf administrative application. Sand box persistence units are defined in persistence.xml like any other persistence unit.

Default:
""

properties

public abstract javax.persistence.PersistenceProperty[] properties
(Optional) Properties for the container or persistence provider. Vendor specific properties may be included in this set of properties. Properties that are not recognized by a vendor are ignored.

Default:
{}


Copyright © 2011. All Rights Reserved.