Package | Description |
---|---|
com.communote.server.core.common.velocity | |
com.communote.server.core.user | |
com.communote.server.model.user | |
com.communote.server.persistence.user |
Modifier and Type | Method and Description |
---|---|
List<Country> |
CommunoteTool.getCountries(javax.servlet.http.HttpServletRequest request)
Delegates to
MasterDataManagement.getCountries(Locale) |
Modifier and Type | Method and Description |
---|---|
Country |
MasterDataManagementBase.findCountryByCode(String countryCode) |
Country |
MasterDataManagement.findCountryByCode(String countryCode)
Finds a country by the country code.
|
protected Country |
MasterDataManagementImpl.handleFindCountryByCode(String countryCode)
Performs the core logic for
MasterDataManagementBase.findCountryByCode(String) |
protected abstract Country |
MasterDataManagementBase.handleFindCountryByCode(String countryCode)
Performs the core logic for
MasterDataManagementBase.findCountryByCode(String) |
Modifier and Type | Method and Description |
---|---|
List<Country> |
MasterDataManagementBase.getCountries(Locale locale) |
List<Country> |
MasterDataManagement.getCountries(Locale locale)
Returns a list of all countries in the database.
|
protected List<Country> |
MasterDataManagementImpl.handleGetCountries(Locale locale)
Performs the core logic for
MasterDataManagementBase.getCountries(Locale) |
protected abstract List<Country> |
MasterDataManagementBase.handleGetCountries(Locale locale)
Performs the core logic for
MasterDataManagementBase.getCountries(Locale) |
Modifier and Type | Class and Description |
---|---|
class |
CountryImpl |
Modifier and Type | Method and Description |
---|---|
Country |
Contact.getCountry() |
static Country |
Country.Factory.newInstance()
Constructs a new instance of
Country . |
static Country |
Country.Factory.newInstance(String countryCode,
String name)
Constructs a new instance of
Country , taking all
possible properties (except the identifier(s))as arguments. |
Modifier and Type | Method and Description |
---|---|
static Contact |
Contact.Factory.newInstance(String street,
String zip,
String city,
PhoneNumber phone,
PhoneNumber fax,
Country country)
Constructs a new instance of
Contact , taking all
possible properties (except the identifier(s))as arguments. |
void |
Contact.setCountry(Country country) |
Modifier and Type | Method and Description |
---|---|
Country |
CountryDaoBase.create(Country country) |
Country |
CountryDao.create(Country country)
Creates an instance of com.communote.server.persistence.user.Country and adds it to the
persistent store.
|
Country |
CountryDaoBase.findCountryByCode(String countryCode) |
Country |
CountryDao.findCountryByCode(String countryCode)
Finds a country object by the given code
|
protected Country |
CountryDaoImpl.handleFindCountryByCode(String countryCode)
Performs the core logic for
CountryDaoBase.findCountryByCode(String) |
protected abstract Country |
CountryDaoBase.handleFindCountryByCode(String countryCode)
Performs the core logic for
CountryDaoBase.findCountryByCode(String) |
Country |
CountryDaoBase.load(Long id) |
Country |
CountryDao.load(Long id)
Loads an instance of com.communote.server.persistence.user.Country from the persistent store.
|
Modifier and Type | Method and Description |
---|---|
Collection<Country> |
CountryDaoBase.create(Collection<Country> entities) |
Collection<Country> |
CountryDao.create(Collection<Country> entities)
Creates a new instance of com.communote.server.persistence.user.Country and adds from the
passed in
entities collection |
Collection<Country> |
CountryDaoBase.create(int transform,
Collection<Country> entities) |
Collection<Country> |
CountryDaoBase.loadAll() |
Collection<Country> |
CountryDao.loadAll()
Loads all entities of type
Country . |
Modifier and Type | Method and Description |
---|---|
Country |
CountryDaoBase.create(Country country) |
Country |
CountryDao.create(Country country)
Creates an instance of com.communote.server.persistence.user.Country and adds it to the
persistent store.
|
Object |
CountryDaoBase.create(int transform,
Country country) |
Object |
CountryDao.create(int transform,
Country country)
Does the same thing as
CountryDao.create(com.communote.server.model.user.Country) with an
additional flag called transform . |
void |
CountryDaoBase.evict(Country entity)
Evicts (removes) the entity from the hibernate cache
|
void |
CountryDao.evict(Country entity)
Evicts (removes) the entity from the hibernate cache
|
void |
CountryDaoBase.remove(Country country) |
void |
CountryDao.remove(Country country)
Removes the instance of com.communote.server.persistence.user.Country from the persistent
store.
|
protected Object |
CountryDaoBase.transformEntity(int transform,
Country entity)
Allows transformation of entities into value objects (or something else for that matter),
when the
transform flag is set to one of the constants defined in
com.communote.server.persistence.user.CountryDao , please note that the
CountryDao.TRANSFORM_NONE constant denotes no transformation, so the entity itself will be
returned. |
void |
CountryDaoBase.update(Country country) |
void |
CountryDao.update(Country country)
Updates the
country instance in the persistent store. |
Modifier and Type | Method and Description |
---|---|
Collection<Country> |
CountryDaoBase.create(Collection<Country> entities) |
Collection<Country> |
CountryDao.create(Collection<Country> entities)
Creates a new instance of com.communote.server.persistence.user.Country and adds from the
passed in
entities collection |
Collection<Country> |
CountryDaoBase.create(int transform,
Collection<Country> entities) |
Collection<?> |
CountryDao.create(int transform,
Collection<Country> entities)
Does the same thing as
CountryDao.create(com.communote.server.model.user.Country) with an
additional flag called transform . |
void |
CountryDaoBase.remove(Collection<Country> entities) |
void |
CountryDao.remove(Collection<Country> entities)
Removes all entities in the given
entities |
void |
CountryDaoBase.update(Collection<Country> entities) |
void |
CountryDao.update(Collection<Country> entities)
Updates all instances in the
entities collection in the persistent store. |
Copyright © 2019 Communote team. All rights reserved.