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

org.sfm.map.impl.PropertyMapping Maven / Gradle / Ivy

package org.sfm.map.impl;

import org.sfm.reflect.meta.PropertyMeta;

public class PropertyMapping {
	private final PropertyMeta propertyMeta;
	private final K columnKey;
	
	
	public PropertyMapping(PropertyMeta propertyMeta, K columnKey) {
		super();
		this.propertyMeta = propertyMeta;
		this.columnKey = columnKey;
	}

	public PropertyMeta getPropertyMeta() {
		return propertyMeta;
	}

	public K getColumnKey() {
		return columnKey;
	}

	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy