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

fi.foyt.fni.rest.material.model.MaterialShareUser Maven / Gradle / Ivy

There is a newer version: 3.3.13
Show newest version
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