com.brihaspathee.zeus.web.security.AuthorityDto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tp-service Show documentation
Show all versions of tp-service Show documentation
Service that contains all Trading Partner Information
The newest version!
package com.brihaspathee.zeus.web.security;
import lombok.*;
import java.util.Set;
import java.util.UUID;
/**
* Created in Intellij IDEA
* User: Balaji Varadharajan
* Date: 03, February 2022
* Time: 3:25 PM
* Project: Zeus
* Package Name: com.brihaspathee.zeus.web.security
* To change this template use File | Settings | File and Code Template
*/
@Getter
@Setter
@Builder
@AllArgsConstructor
@NoArgsConstructor
public class AuthorityDto {
private UUID authorityId;
private String permission;
private Set roles;
@Override
public String toString() {
return "AuthorityDto{" +
"authorityId=" + authorityId +
", permission='" + permission + '\'' +
", roles=" + roles +
'}';
}
}