Uses of Class
org.squashtest.csp.tm.domain.customfield.BindableEntity

Packages that use BindableEntity
org.squashtest.csp.tm.domain.campaign   
org.squashtest.csp.tm.domain.customfield   
org.squashtest.csp.tm.domain.requirement   
org.squashtest.csp.tm.domain.testcase   
org.squashtest.csp.tm.internal.repository   
org.squashtest.csp.tm.internal.repository.hibernate This file contains Hibernate named queries used by DAOs. 
org.squashtest.csp.tm.internal.service.customField   
org.squashtest.csp.tm.service.customfield   
 

Uses of BindableEntity in org.squashtest.csp.tm.domain.campaign
 

Methods in org.squashtest.csp.tm.domain.campaign that return BindableEntity
 BindableEntity TestSuite.getBoundEntityType()
           
 BindableEntity Iteration.getBoundEntityType()
           
 BindableEntity Campaign.getBoundEntityType()
           
 

Uses of BindableEntity in org.squashtest.csp.tm.domain.customfield
 

Methods in org.squashtest.csp.tm.domain.customfield that return BindableEntity
 BindableEntity CustomFieldBinding.getBoundEntity()
           
 BindableEntity CustomFieldValue.getBoundEntityType()
           
 BindableEntity BoundEntity.getBoundEntityType()
           
static BindableEntity BindableEntity.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static BindableEntity[] BindableEntity.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.squashtest.csp.tm.domain.customfield with parameters of type BindableEntity
 void CustomFieldBinding.setBoundEntity(BindableEntity boundEntity)
           
 

Constructors in org.squashtest.csp.tm.domain.customfield with parameters of type BindableEntity
CustomFieldValue(Long boundEntityId, BindableEntity boundEntityType, CustomFieldBinding binding, String value)
           
 

Uses of BindableEntity in org.squashtest.csp.tm.domain.requirement
 

Methods in org.squashtest.csp.tm.domain.requirement that return BindableEntity
 BindableEntity RequirementVersion.getBoundEntityType()
           
 

Uses of BindableEntity in org.squashtest.csp.tm.domain.testcase
 

Methods in org.squashtest.csp.tm.domain.testcase that return BindableEntity
 BindableEntity TestCase.getBoundEntityType()
           
 

Uses of BindableEntity in org.squashtest.csp.tm.internal.repository
 

Methods in org.squashtest.csp.tm.internal.repository with parameters of type BindableEntity
 Long CustomFieldBindingDao.countAllForProjectAndEntity(long projectId, BindableEntity boundEntity)
           
 void CustomFieldValueDao.deleteAllForEntities(BindableEntity entityTpe, List<Long> entityIds)
          Delete all the custom field values related to a bunch of bound entities
 void CustomFieldValueDao.deleteAllForEntity(Long entityId, BindableEntity entity)
          Delete all the custom field values related to a BoundEntity, identified by its id and BindableEntity
 List<CustomField> CustomFieldDao.findAllBindableCustomFields(Long projectId, BindableEntity bindableEntity)
          Will return the list of custom fields that can be bound to the given project and the given bindable entity (ie, those who aren't bound yet).
 List<CustomFieldValue> CustomFieldValueDao.findAllCustomValues(long entityId, BindableEntity entityType)
          returns the list of CustomFieldValue for the given entity, sorted according to the order specified in their respective CustomFieldBinding.
 List<CustomFieldBinding> CustomFieldBindingDao.findAllForProjectAndEntity(long projectId, BindableEntity boundEntity)
           
 List<CustomFieldBinding> CustomFieldBindingDao.findAllForProjectAndEntity(long projectId, BindableEntity boundEntity, org.squashtest.tm.core.foundation.collection.Paging paging)
           
 BoundEntity BoundEntityDao.findBoundEntity(Long boundEntityId, BindableEntity entityType)
          Will retrieve a BoundEntity according to its ID and type.
 List<CustomFieldValueDao.CustomFieldValuesPair> CustomFieldValueDao.findPairedCustomFieldValues(BindableEntity entity, Long origEntityId, Long copyEntityId)
          Will return instances of CustomFieldValueDao.CustomFieldValuesPair, that will pair two CustomFieldValue that represents the same CustomFieldBinding.
 boolean BoundEntityDao.hasCustomField(Long boundEntityId, BindableEntity entityType)
          Tells whether the given bound entity has custom fields or not.
 

Uses of BindableEntity in org.squashtest.csp.tm.internal.repository.hibernate
 

Methods in org.squashtest.csp.tm.internal.repository.hibernate with parameters of type BindableEntity
 BoundEntity HibernateBoundEntityDao.findBoundEntity(Long boundEntityId, BindableEntity entityType)
           
 boolean HibernateBoundEntityDao.hasCustomField(Long boundEntityId, BindableEntity entityType)
           
 

Uses of BindableEntity in org.squashtest.csp.tm.internal.service.customField
 

Methods in org.squashtest.csp.tm.internal.service.customField with parameters of type BindableEntity
 void CustomFieldBindingModificationServiceImpl.addNewCustomFieldBinding(long projectId, BindableEntity entity, long customFieldId, CustomFieldBinding newBinding)
           
 void PrivateCustomFieldValueService.deleteAllCustomFieldValues(BindableEntity entityType, List<Long> entityIds)
          Will delete all the custom field values for multiple BoundEntities
 void PrivateCustomFieldValueServiceImpl.deleteAllCustomFieldValues(BindableEntity entityType, List<Long> entityIds)
           
 List<CustomFieldValue> PrivateCustomFieldValueServiceImpl.findAllCustomFieldValues(Long boundEntityId, BindableEntity bindableEntity)
           
 List<CustomField> CustomFieldBindingModificationServiceImpl.findAvailableCustomFields(long projectId, BindableEntity entity)
           
 List<CustomFieldBinding> CustomFieldBindingModificationServiceImpl.findCustomFieldsForProjectAndEntity(long projectId, BindableEntity entity)
           
 org.squashtest.tm.core.foundation.collection.PagedCollectionHolder<List<CustomFieldBinding>> CustomFieldBindingModificationServiceImpl.findCustomFieldsForProjectAndEntity(long projectId, BindableEntity entity, org.squashtest.tm.core.foundation.collection.Paging paging)
           
 boolean PrivateCustomFieldValueServiceImpl.hasCustomFields(Long boundEntityId, BindableEntity bindableEntity)
           
 

Uses of BindableEntity in org.squashtest.csp.tm.service.customfield
 

Methods in org.squashtest.csp.tm.service.customfield with parameters of type BindableEntity
 void CustomFieldBindingModificationService.addNewCustomFieldBinding(long projectId, BindableEntity entity, long customFieldId, CustomFieldBinding newBinding)
          Will attach a CustomField to a Project.
 List<CustomFieldValue> CustomFieldValueFinderService.findAllCustomFieldValues(Long boundEntityId, BindableEntity bindableEntity)
          Same as CustomFieldValueFinderService.findAllCustomFieldValues(BoundEntity), but the properties identifying a BoundEntity are broken down into its ID and type.
 List<CustomField> CustomFieldBindingFinderService.findAvailableCustomFields(long projectId, BindableEntity entity)
          same as CustomFieldBindingFinderService.findAvailableCustomFields(), restricted to the given project and bindable entity.
 List<CustomFieldBinding> CustomFieldBindingFinderService.findCustomFieldsForProjectAndEntity(long projectId, BindableEntity entity)
          returns all the custom field bindings associated to a project for a given entity type
 org.squashtest.tm.core.foundation.collection.PagedCollectionHolder<List<CustomFieldBinding>> CustomFieldBindingFinderService.findCustomFieldsForProjectAndEntity(long projectId, BindableEntity entity, org.squashtest.tm.core.foundation.collection.Paging paging)
          returns all the custom field bindings associated to a project for a given entity type (paged version)
 boolean CustomFieldValueFinderService.hasCustomFields(Long boundEntityId, BindableEntity bindableEntity)
          Same as CustomFieldValueFinderService.hasCustomFields(BoundEntity), the bound entity being identified by its type and id
 



Copyright © 2010-2012 Henix, henix.fr. All Rights Reserved.