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

com.antelopesystem.crudframework.fieldmapper.dto.EntityStructureDTO Maven / Gradle / Ivy

There is a newer version: 0.6.0
Show newest version
package com.antelopesystem.crudframework.fieldmapper.dto;

import com.antelopesystem.crudframework.fieldmapper.annotation.MappedField;

import java.lang.reflect.Field;
import java.util.List;
import java.util.Map;

public class EntityStructureDTO {

	private List typeAnnotations;

	private Map> annotations;

	public EntityStructureDTO(List typeAnnotations, Map> annotations) {
		this.typeAnnotations = typeAnnotations;
		this.annotations = annotations;
	}

	public List getTypeAnnotations() {
		return typeAnnotations;
	}

	public void setTypeAnnotations(List typeAnnotations) {
		this.typeAnnotations = typeAnnotations;
	}

	public Map> getAnnotations() {
		return annotations;
	}

	public void setAnnotations(Map> annotations) {
		this.annotations = annotations;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy