fi.foyt.fni.rest.material.model.MaterialShareGroup 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
The newest version!
package fi.foyt.fni.rest.material.model;
import fi.foyt.fni.persistence.model.materials.MaterialRole;
public class MaterialShareGroup extends MaterialShare {
public MaterialShareGroup() {
super();
}
public MaterialShareGroup(Long id, Long userGroupId, MaterialRole role) {
super(id, role);
this.userGroupId = userGroupId;
}
public Long getUserGroupId() {
return userGroupId;
}
public void setUserGroupId(Long userGroupId) {
this.userGroupId = userGroupId;
}
private Long userGroupId;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy