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

com.jpattern.orm.annotation.column.AnnotationColumnInfo Maven / Gradle / Ivy

There is a newer version: 6.3.0
Show newest version
package com.jpattern.orm.annotation.column;

import com.jpattern.orm.annotation.Column;

/**
 * It returns the column name based on the name set in the {@link Column} annotation
 * @author cinafr
 *
 */
public class AnnotationColumnInfo implements ColumnInfo {

	private String javaColumnName;

	public AnnotationColumnInfo(final String javaColumnName) {
		this.javaColumnName = javaColumnName;
	}

	@Override
	public String getDBColumnName() {
		return this.javaColumnName;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy