Uses of Class
org.broadleafcommerce.openadmin.client.dto.ClassMetadata

Packages that use ClassMetadata
org.broadleafcommerce.openadmin.client.datasource.dynamic.module   
org.broadleafcommerce.openadmin.client.dto   
org.broadleafcommerce.openadmin.server.service   
org.broadleafcommerce.openadmin.server.service.persistence   
org.broadleafcommerce.openadmin.server.service.persistence.module   
org.broadleafcommerce.openadmin.web.controller.entity   
org.broadleafcommerce.openadmin.web.service   
 

Uses of ClassMetadata in org.broadleafcommerce.openadmin.client.datasource.dynamic.module
 

Methods in org.broadleafcommerce.openadmin.client.datasource.dynamic.module with parameters of type ClassMetadata
protected  void BasicClientEntityModule.filterProperties(ClassMetadata metadata, MergedPropertyType[] includeTypes, Boolean overrideFieldSort, PresenterSequenceSetupManager presenterSequenceSetupManager)
           
 

Uses of ClassMetadata in org.broadleafcommerce.openadmin.client.dto
 

Methods in org.broadleafcommerce.openadmin.client.dto that return ClassMetadata
 ClassMetadata DynamicResultSet.getClassMetaData()
           
 

Methods in org.broadleafcommerce.openadmin.client.dto with parameters of type ClassMetadata
 void DynamicResultSet.setClassMetaData(ClassMetadata classMetaData)
           
 

Constructors in org.broadleafcommerce.openadmin.client.dto with parameters of type ClassMetadata
DynamicResultSet(ClassMetadata classMetaData)
           
DynamicResultSet(ClassMetadata classMetaData, Entity[] records, Integer totalRecords)
           
 

Uses of ClassMetadata in org.broadleafcommerce.openadmin.server.service
 

Methods in org.broadleafcommerce.openadmin.server.service that return ClassMetadata
 ClassMetadata AdminEntityServiceImpl.getClassMetadata(PersistencePackageRequest request)
           
 ClassMetadata AdminEntityService.getClassMetadata(PersistencePackageRequest request)
          Returns class metadata for the given request object
 

Methods in org.broadleafcommerce.openadmin.server.service with parameters of type ClassMetadata
 Entity AdminEntityServiceImpl.addSubCollectionEntity(EntityForm entityForm, ClassMetadata mainMetadata, Property field, Entity parentEntity)
           
 Entity AdminEntityService.addSubCollectionEntity(EntityForm entityForm, ClassMetadata mainMetadata, Property field, Entity parentEntity)
          Adds an item into the specified collection
 Entity AdminEntityServiceImpl.getAdvancedCollectionRecord(ClassMetadata containingClassMetadata, Entity containingEntity, Property collectionProperty, String collectionItemId)
           
 Entity AdminEntityService.getAdvancedCollectionRecord(ClassMetadata containingClassMetadata, Entity containingEntity, Property collectionProperty, String collectionItemId)
          Gets an Entity representing a specific collection item
 String AdminEntityServiceImpl.getContextSpecificRelationshipId(ClassMetadata cmd, Entity entity, String propertyName)
           
 String AdminEntityService.getContextSpecificRelationshipId(ClassMetadata cmd, Entity entity, String propertyName)
          Returns the appropriate id to use for the given entity/metadata and prefix when dealing with collections.
 Entity[] AdminEntityServiceImpl.getRecordsForCollection(ClassMetadata containingClassMetadata, Entity containingEntity, Property collectionProperty, FilterAndSortCriteria[] criteria)
           
 Entity[] AdminEntityService.getRecordsForCollection(ClassMetadata containingClassMetadata, Entity containingEntity, Property collectionProperty, FilterAndSortCriteria[] criteria)
          Returns the Entity[] representing the records that belong to the specified collectionProperty for the given containingClass and the primary key for the containingClass
 void AdminEntityServiceImpl.removeSubCollectionEntity(ClassMetadata mainMetadata, Property field, Entity parentEntity, String itemId, String priorKey)
           
 void AdminEntityService.removeSubCollectionEntity(ClassMetadata mainMetadata, Property field, Entity parentEntity, String itemId, String priorKey)
          Removes the given item from the specified collection.
 Entity AdminEntityServiceImpl.updateSubCollectionEntity(EntityForm entityForm, ClassMetadata mainMetadata, Property field, Entity parentEntity, String collectionItemId)
           
 Entity AdminEntityService.updateSubCollectionEntity(EntityForm entityForm, ClassMetadata mainMetadata, Property field, Entity parentEntity, String collectionItemId)
          Updates the specified collection item
 

Uses of ClassMetadata in org.broadleafcommerce.openadmin.server.service.persistence
 

Methods in org.broadleafcommerce.openadmin.server.service.persistence that return ClassMetadata
 ClassMetadata PersistenceManagerImpl.getMergedClassMetadata(Class<?>[] entities, Map<MergedPropertyType,Map<String,FieldMetadata>> mergedProperties)
           
 ClassMetadata PersistenceManager.getMergedClassMetadata(Class<?>[] entities, Map<MergedPropertyType,Map<String,FieldMetadata>> mergedProperties)
           
 

Uses of ClassMetadata in org.broadleafcommerce.openadmin.server.service.persistence.module
 

Methods in org.broadleafcommerce.openadmin.server.service.persistence.module that return ClassMetadata
 ClassMetadata InspectHelper.getMergedClassMetadata(Class<?>[] entities, Map<MergedPropertyType,Map<String,FieldMetadata>> mergedProperties)
           
 

Uses of ClassMetadata in org.broadleafcommerce.openadmin.web.controller.entity
 

Methods in org.broadleafcommerce.openadmin.web.controller.entity with parameters of type ClassMetadata
protected  ListGrid AdminBasicEntityController.getCollectionListGrid(ClassMetadata mainMetadata, Entity entity, Property collectionProperty, FilterAndSortCriteria[] criteria, String sectionKey)
          Convenience method for obtaining a ListGrid DTO object for a collection.
 

Uses of ClassMetadata in org.broadleafcommerce.openadmin.web.service
 

Methods in org.broadleafcommerce.openadmin.web.service with parameters of type ClassMetadata
 EntityForm FormBuilderServiceImpl.buildEntityForm(ClassMetadata cmd)
           
 EntityForm FormBuilderService.buildEntityForm(ClassMetadata cmd)
          Builds an EntityForm that has all of the appropriate fields set up without any values.
 EntityForm FormBuilderServiceImpl.buildEntityForm(ClassMetadata cmd, Entity entity)
           
 EntityForm FormBuilderService.buildEntityForm(ClassMetadata cmd, Entity entity)
          Builds an EntityForm that has all of the appropriate fields set up along with the values for those fields from the given Entity.
 EntityForm FormBuilderServiceImpl.buildEntityForm(ClassMetadata cmd, Entity entity, Map<String,Entity[]> collectionRecords)
           
 EntityForm FormBuilderService.buildEntityForm(ClassMetadata cmd, Entity entity, Map<String,Entity[]> collectionRecords)
          Builds an EntityForm that has all of the appropriate fields set up along with the values for thsoe fields from the given Entity as well as all sub-collections of the given Entity that appear in the collectionRecords map.
 ListGrid FormBuilderServiceImpl.buildMainListGrid(Entity[] entities, ClassMetadata cmd, String sectionKey)
           
 ListGrid FormBuilderService.buildMainListGrid(Entity[] entities, ClassMetadata cmd, String sectionKey)
          Builds a list grid that is typically used at the top entity level to select an entity for modification.
 EntityForm FormBuilderServiceImpl.buildMapForm(MapMetadata mapMd, MapStructure mapStructure, ClassMetadata cmd, String parentId)
           
 EntityForm FormBuilderService.buildMapForm(MapMetadata mapMd, MapStructure mapStructure, ClassMetadata cmd, String parentId)
          Builds the EntityForm used in modal dialogs when adding items to map collections.
 void FormBuilderServiceImpl.removeNonApplicableFields(ClassMetadata cmd, EntityForm entityForm, String entityType)
           
 void FormBuilderService.removeNonApplicableFields(ClassMetadata cmd, EntityForm entityForm, String entityType)
          Loops through all of the fields that are specified in given class metadata and removes fields that are not applicable for the given polymorphic entity type from the entity form.
 



Copyright © 2013. All Rights Reserved.