| 1234567891011121314151617181920212223242526272829 |
- //package com.ydtech.security;
- //
- //import org.springframework.security.core.GrantedAuthority;
- //
- ///**
- // * 权限封装
- // *
- // * @author Louis
- // * @date Jun 29, 2019
- // */
- //public class GrantedAuthorityImpl implements GrantedAuthority {
- //
- // private static final long serialVersionUID = 1L;
- //
- // private String authority;
- //
- // public GrantedAuthorityImpl(String authority) {
- // this.authority = authority;
- // }
- //
- // public void setAuthority(String authority) {
- // this.authority = authority;
- // }
- //
- // @Override
- // public String getAuthority() {
- // return this.authority;
- // }
- //}
|