
org.ioc.commons.japtsy.server.model.biz.EntityIdField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ioc-commons-japtsy Show documentation
Show all versions of ioc-commons-japtsy Show documentation
Common classes required for Java Transfer Protocol System communication
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