Search in sources :

Example 1 with CountryImpl

use of com.liferay.blade.samples.dspservicebuilder.model.impl.CountryImpl in project liferay-blade-samples by liferay.

the class CountryPersistenceImpl method create.

/**
 * Creates a new country with the primary key. Does not add the country to the database.
 *
 * @param countryId the primary key for the new country
 * @return the new country
 */
@Override
public Country create(long countryId) {
    Country country = new CountryImpl();
    country.setNew(true);
    country.setPrimaryKey(countryId);
    return country;
}
Also used : CountryImpl(com.liferay.blade.samples.dspservicebuilder.model.impl.CountryImpl) Country(com.liferay.blade.samples.dspservicebuilder.model.Country)

Aggregations

Country (com.liferay.blade.samples.dspservicebuilder.model.Country)1 CountryImpl (com.liferay.blade.samples.dspservicebuilder.model.impl.CountryImpl)1