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

org.sonar.api.security.UserRole Maven / Gradle / Ivy

There is a newer version: 5.1
Show newest version
/*
 * Sonar, open source software quality management tool.
 * Copyright (C) 2009 SonarSource SA
 * mailto:contact AT sonarsource DOT com
 *
 * Sonar is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 3 of the License, or (at your option) any later version.
 *
 * Sonar is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with Sonar; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02
 */
package org.sonar.api.security;

import org.sonar.api.database.BaseIdentifiable;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Table;

/**
 * This JPA model maps the table user_roles
 *
 * @since 1.12
 */
@Entity
@Table(name = "user_roles")
public class UserRole extends BaseIdentifiable {

  @Column(name = "user_id")
  private Integer userId;

  @Column(name = "role")
  private String role;

  @Column(name = "resource_id")
  private Integer resourceId;

  public UserRole(Integer userId, String role, Integer resourceId) {
    this.userId = userId;
    this.role = role;
    this.resourceId = resourceId;
  }

  public UserRole() {
  }

  public Integer getUserId() {
    return userId;
  }

  public UserRole setUserId(Integer userId) {
    this.userId = userId;
    return this;
  }

  public String getRole() {
    return role;
  }

  public UserRole setRole(String role) {
    this.role = role;
    return this;
  }

  public Integer getResourceId() {
    return resourceId;
  }

  public UserRole setResourceId(Integer resourceId) {
    this.resourceId = resourceId;
    return this;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy