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

com.blossomproject.core.role.RoleDTO Maven / Gradle / Ivy

There is a newer version: 1.3.0
Show newest version
package com.blossomproject.core.role;

import com.blossomproject.core.common.dto.AbstractDTO;
import java.util.List;
import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement
public class RoleDTO extends AbstractDTO {

  private String name;
  private String description;
  private List privileges;

  public String getName() {
    return name;
  }

  public void setName(String name) {
    this.name = name;
  }

  public String getDescription() {
    return description;
  }

  public void setDescription(String description) {
    this.description = description;
  }

  public List getPrivileges() {
    return privileges;
  }

  public void setPrivileges(List privileges) {
    this.privileges = privileges;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy