Java tutorial
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package com.linksinnovation.elearning.model; import java.util.Objects; import javax.persistence.Entity; import javax.persistence.Id; import org.springframework.security.core.GrantedAuthority; /** * * @author Jirawong Wongdokpuang <jirawong@linksinnovation.com> */ @Entity public class Authority implements GrantedAuthority { @Id private String authority; public Authority() { } public Authority(String authority) { this.authority = authority; } @Override public String getAuthority() { return this.authority; } public void setAuthority(String authority) { this.authority = authority; } @Override public int hashCode() { int hash = 3; hash = 97 * hash + Objects.hashCode(this.authority); return hash; } @Override public boolean equals(Object obj) { if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } final Authority other = (Authority) obj; if (!Objects.equals(this.authority, other.authority)) { return false; } return true; } }