
fi.foyt.fni.rest.material.model.MaterialShareUser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-model Show documentation
Show all versions of rest-model Show documentation
Forge & Illusion - REST Model
package fi.foyt.fni.rest.material.model;
import fi.foyt.fni.persistence.model.materials.MaterialRole;
public class MaterialShareUser extends MaterialShare {
public MaterialShareUser() {
super();
}
public MaterialShareUser(Long id, Long userId, MaterialRole role) {
super(id, role);
this.userId = userId;
}
public Long getUserId() {
return userId;
}
public void setUserId(Long userId) {
this.userId = userId;
}
private Long userId;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy