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

org.ioc.commons.japtsy.server.model.biz.EntityIdField Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
package org.ioc.commons.japtsy.server.model.biz;

class EntityIdField {

	String fieldName;
	EntityId entityId;

	public EntityIdField(String fieldName, EntityId entityId) {
		this.entityId = entityId;
		this.fieldName = fieldName;
	}

	public EntityId getEntityId() {
		return entityId;
	}

	public String getFieldName() {
		return fieldName;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy