All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.company.sakila.db0.sakila.country.generated.GeneratedCountryManager Maven / Gradle / Ivy

package com.company.sakila.db0.sakila.country.generated;

import com.company.sakila.db0.sakila.country.Country;
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.country.Country} entity.
 * 

* This file has been automatically generated by Speedment. Any changes made to * it will be overwritten. * * @author Speedment */ @GeneratedCode("Speedment") public interface GeneratedCountryManager extends Manager { TableIdentifier IDENTIFIER = TableIdentifier.of( "db0", "sakila", "country" ) ; List> FIELDS = unmodifiableList(asList( Country.COUNTRY_ID, Country.COUNTRY, Country.LAST_UPDATE )); @Override default Class getEntityClass() { return Country.class; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy