
com.company.sakila.db0.sakila.address.generated.GeneratedAddressManager Maven / Gradle / Ivy
The newest version!
package com.company.sakila.db0.sakila.address.generated;
import com.company.sakila.db0.sakila.address.Address;
import com.speedment.common.annotation.GeneratedCode;
import com.speedment.runtime.config.identifier.TableIdentifier;
import com.speedment.runtime.core.manager.Manager;
import com.speedment.runtime.field.Field;
import java.util.List;
import static java.util.Arrays.asList;
import static java.util.Collections.unmodifiableList;
/**
* The generated base interface for the manager of every {@link
* com.company.sakila.db0.sakila.address.Address} entity.
*
* This file has been automatically generated by Speedment. Any changes made to
* it will be overwritten.
*
* @author Speedment
*/
@GeneratedCode("Speedment")
public interface GeneratedAddressManager extends Manager
{
TableIdentifier IDENTIFIER = TableIdentifier.of("db0", "sakila", "address");
List> FIELDS = unmodifiableList(asList(
Address.ADDRESS_ID,
Address.ADDRESS,
Address.ADDRESS2,
Address.DISTRICT,
Address.CITY_ID,
Address.POSTAL_CODE,
Address.PHONE,
Address.LOCATION,
Address.LAST_UPDATE
));
@Override
default Class getEntityClass() {
return Address.class;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy