Package | Description |
---|---|
org.itracker.model |
All entity classes are POJO beans.
|
org.itracker.persistence.dao |
This package contains all Data Access Object (XxxDAO) interfaces
along with their Hibernate implementations (XxxDAOImpl).
|
org.itracker.services |
Service Interfaces
|
org.itracker.services.implementations |
This package contains XXXService interface implementations,
named XXXServiceImpl by convention.
|
Modifier and Type | Field | Description |
---|---|---|
static Comparator<Language> |
Language.KEY_COMPARATOR |
|
static Comparator<Language> |
Language.VALUE_COMPARATOR |
Modifier and Type | Method | Description |
---|---|---|
Language |
LanguageDAO.findById(Integer id) |
|
Language |
LanguageDAOImpl.findById(Integer id) |
|
Language |
LanguageDAO.findByKeyAndLocale(String key,
String locale) |
Finds all language items with the given key and locale.
|
Language |
LanguageDAOImpl.findByKeyAndLocale(String key,
String locale) |
Modifier and Type | Method | Description |
---|---|---|
List<Language> |
LanguageDAO.findByKey(String key) |
Finds all language items with a particular key.
|
List<Language> |
LanguageDAOImpl.findByKey(String key) |
|
List<Language> |
LanguageDAO.findByLocale(String locale) |
Finds all language items with a given locale.
|
List<Language> |
LanguageDAOImpl.findByLocale(String locale) |
Modifier and Type | Method | Description |
---|---|---|
Language |
ConfigurationService.getLanguageItemByKey(String key,
Locale locale) |
This method will return the translation for a particular key in a locale.
|
Language |
ConfigurationService.updateLanguageItem(Language language) |
Updates a translations for a particular key and locale.
|
Modifier and Type | Method | Description |
---|---|---|
List<Language> |
ConfigurationService.getLanguageItemsByKey(String key) |
This method will return all the translations for a particular key.
|
Modifier and Type | Method | Description |
---|---|---|
void |
ConfigurationService.removeLanguageItem(Language language) |
|
Language |
ConfigurationService.updateLanguageItem(Language language) |
Updates a translations for a particular key and locale.
|
Modifier and Type | Method | Description |
---|---|---|
void |
ConfigurationService.updateLanguage(Locale locale,
List<Language> languages) |
|
void |
ConfigurationService.updateLanguage(Locale locale,
List<Language> languages,
Configuration config) |
Modifier and Type | Method | Description |
---|---|---|
Language |
ConfigurationServiceImpl.getLanguageItemByKey(String key,
Locale locale) |
|
Language |
ConfigurationServiceImpl.updateLanguageItem(Language language) |
Modifier and Type | Method | Description |
---|---|---|
List<Language> |
ConfigurationServiceImpl.getLanguageItemsByKey(String key) |
Modifier and Type | Method | Description |
---|---|---|
void |
ConfigurationServiceImpl.removeLanguageItem(Language language) |
Removes the
Language passed as parameter |
Language |
ConfigurationServiceImpl.updateLanguageItem(Language language) |
Modifier and Type | Method | Description |
---|---|---|
void |
ConfigurationServiceImpl.updateLanguage(Locale locale,
List<Language> items) |
|
void |
ConfigurationServiceImpl.updateLanguage(Locale locale,
List<Language> items,
Configuration configItem) |
Copyright © 2002–2019 itracker. All rights reserved.