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

nz.co.gregs.dbvolution.example.CompanyText Maven / Gradle / Ivy

/*
 * Copyright 2013 Gregory Graham.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package nz.co.gregs.dbvolution.example;

import nz.co.gregs.dbvolution.datatypes.DBInteger;
import nz.co.gregs.dbvolution.DBRow;
import nz.co.gregs.dbvolution.datatypes.DBString;
import nz.co.gregs.dbvolution.annotations.*;
import nz.co.gregs.dbvolution.datatypes.DBLargeText;

/**
 * A DBRow Java class that represents the "CompanyLogo" table.
 *
 * 

* @DBTableName annotation allows the class to be renamed to fit better * within a Java library while preserving the actual database name. * *

Support DBvolution at * Patreon

* * @author Gregory Graham */ @DBTableName("CompanyText") public class CompanyText extends DBRow { private static final long serialVersionUID = 1L; /** * A DBInteger field representing the "logo_id" column in the database. * *

* @DBPrimaryKey both indicates that the field is the primary key of the * table and should be used to connect other related tables to this table. * *

* @DBColumn both indicates that the field is part of the database table * and protects the actual database column name from any refactoring. * *

* DBInteger indicates that the field is INTEGER or NUMBER field that * naturally provides Integer values in Java. It has an instance as that just * makes everyone's life easier. * */ @DBPrimaryKey @DBColumn("text_id") public DBInteger textID = new DBInteger(); /** * A DBInteger field representing the "car_company_fk" column in the database. * *

* @DBColumn both indicates that the field is part of the database table * and protects the actual database column name from any refactoring. * *

* @DBForeignKey indicates that this field is a reference to the primary * key of the table represented by CarCompany. * *

* DBInteger indicates that the field is INTEGER or NUMBER field that * naturally provides an Integer value in Java. It has an instance as that * just makes everyone's life easier. * */ @DBForeignKey(CarCompany.class) @DBColumn("car_company_fk") public DBInteger carCompany = new DBInteger(); /** * A DBLargeText field representing the "text_file" column in the database. * *

* @DBColumn both indicates that the field is part of the database table * and protects the actual database column name from any refactoring. * *

* DBByteArray indicates that the field is CLOB or TEXT field that naturally * provides a byte[] value in Java. It has an instance as that just makes * everyone's life easier. * */ @DBColumn("text_file") public DBLargeText text = new DBLargeText(); /** * A DBString field representing the "text_name" column in the database. * *

* @DBColumn both indicates that the field is part of the database table * and protects the actual database column name from any refactoring. * *

* DBInteger indicates that the field is CHAR or VARCHAR field that naturally * provides String values in Java. It has an instance as that just makes * everyone's life easier. * */ @DBColumn("text_name") public DBString textFilename = new DBString(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy