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

com.agimatec.annomark.example.transfer.TransferRole Maven / Gradle / Ivy

There is a newer version: 2.5.11
Show newest version
package com.agimatec.annomark.example.transfer;

import java.io.Serializable;

/******************
 * CODE GENERATED BY "java-pojo.ftl" - DO NOT EDIT!
 * 
* source: {@link com.agimatec.annomark.example.model.Role} * Role for users ******************/ public class TransferRole implements Serializable { /** * source: roleId **/ private Long roleId; /** * source: roleName **/ private String roleName; /** * source: roleDescription **/ private String roleDescription; /** * source: privileges **/ private java.util.List privileges; public Long getRoleId() { return roleId; } public void setRoleId(Long roleId) { this.roleId = roleId; } public String getRoleName() { return roleName; } public void setRoleName(String roleName) { this.roleName = roleName; } public String getRoleDescription() { return roleDescription; } public void setRoleDescription(String roleDescription) { this.roleDescription = roleDescription; } public java.util.List getPrivileges() { return privileges; } public void setPrivileges(java.util.List privileges) { this.privileges = privileges; } @Override public String toString() { return new StringBuilder() .append("{com.agimatec.annomark.example.transfer.TransferRole: ") .append("roleId=").append(roleId) .append(",roleName=").append(roleName) .append('}').toString(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy