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

com.jpattern.orm.test.mapper.AnnotationBean2 Maven / Gradle / Ivy

The newest version!
package com.jpattern.orm.test.mapper;

import com.jpattern.orm.annotation.Id;
import com.jpattern.orm.annotation.Table;

/**
 * 
 * @author Francesco Cina
 *
 * 08/giu/2011
 */

@Table( schemaName = "SCHEMA_NAME")
public class AnnotationBean2 {

	@Id
	private String index;

	public long columnNotAnnotated;

	@Id
	protected Object columnNotAnnotated2;

	public String getIndex() {
		return this.index;
	}

	public void setIndex(final String index) {
		this.index = index;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy