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.Schema;

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

@Schema( name = "SCHEMA_NAME")
public class AnnotationBean2 {

	@Id
	private String index;
	
	public long columnNotAnnotated;
	
	@Id
	protected Object columnNotAnnotated2;

	public String getIndex() {
		return index;
	}

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy