Uses of Interface
org.broadleafcommerce.common.i18n.domain.Translation

Packages that use Translation
org.broadleafcommerce.common.i18n.dao   
org.broadleafcommerce.common.i18n.domain   
org.broadleafcommerce.common.i18n.service   
 

Uses of Translation in org.broadleafcommerce.common.i18n.dao
 

Methods in org.broadleafcommerce.common.i18n.dao that return Translation
 Translation TranslationDao.create()
          Creates an empty translation instance that is not persisted to the database
 Translation TranslationDaoImpl.create()
           
 Translation TranslationDao.readTranslation(TranslatedEntity entity, String entityId, String fieldName, String localeCode)
          Reads a translation for the requested parameters.
 Translation TranslationDaoImpl.readTranslation(TranslatedEntity entity, String entityId, String fieldName, String localeCode)
           
 Translation TranslationDao.readTranslationById(Long translationId)
          Reads a translation by its own primary key
 Translation TranslationDaoImpl.readTranslationById(Long translationId)
           
 Translation TranslationDao.save(Translation translation)
          Persists the given translation
 Translation TranslationDaoImpl.save(Translation translation)
           
 

Methods in org.broadleafcommerce.common.i18n.dao that return types with arguments of type Translation
 List<Translation> TranslationDao.readTranslations(TranslatedEntity entity, String entityId, String fieldName)
          Reads all translations for a given field
 List<Translation> TranslationDaoImpl.readTranslations(TranslatedEntity entity, String entityId, String fieldName)
           
 

Methods in org.broadleafcommerce.common.i18n.dao with parameters of type Translation
 void TranslationDao.delete(Translation translation)
          Deletes the given translation
 void TranslationDaoImpl.delete(Translation translation)
           
 Translation TranslationDao.save(Translation translation)
          Persists the given translation
 Translation TranslationDaoImpl.save(Translation translation)
           
 

Uses of Translation in org.broadleafcommerce.common.i18n.domain
 

Classes in org.broadleafcommerce.common.i18n.domain that implement Translation
 class TranslationImpl
           
 

Uses of Translation in org.broadleafcommerce.common.i18n.service
 

Methods in org.broadleafcommerce.common.i18n.service that return Translation
 Translation TranslationService.getTranslation(TranslatedEntity entity, String entityId, String fieldName, String localeCode)
          Attempts to find the translation object for the given parameters
 Translation TranslationServiceImpl.getTranslation(TranslatedEntity entity, String entityId, String fieldName, String localeCode)
           
 Translation TranslationService.save(String entityType, String entityId, String fieldName, String localeCode, String translatedValue)
          Creates a new translation object for the requested parameters, saves it, and returns the saved instance.
 Translation TranslationServiceImpl.save(String entityType, String entityId, String fieldName, String localeCode, String translatedValue)
           
 Translation TranslationService.save(Translation translation)
          Persists the given translation
 Translation TranslationServiceImpl.save(Translation translation)
           
 Translation TranslationService.update(Long translationId, String localeCode, String translatedValue)
          Updates the given translation id with the new locale code and translated value
 Translation TranslationServiceImpl.update(Long translationId, String localeCode, String translatedValue)
           
 

Methods in org.broadleafcommerce.common.i18n.service that return types with arguments of type Translation
 List<Translation> TranslationService.getTranslations(String ceilingEntityClassname, String entityId, String property)
          Finds all current translations for the specified field
 List<Translation> TranslationServiceImpl.getTranslations(String ceilingEntityClassname, String entityId, String property)
           
 

Methods in org.broadleafcommerce.common.i18n.service with parameters of type Translation
 Translation TranslationService.save(Translation translation)
          Persists the given translation
 Translation TranslationServiceImpl.save(Translation translation)
           
 



Copyright © 2013. All Rights Reserved.