2  * ============LICENSE_START=======================================================
 
   3  * ONAP : ccsdk features
 
   4  * ================================================================================
 
   5  * Copyright (C) 2020 highstreet technologies GmbH Intellectual Property.
 
   7  * ================================================================================
 
   8  * Licensed under the Apache License, Version 2.0 (the "License");
 
   9  * you may not use this file except in compliance with the License.
 
  10  * You may obtain a copy of the License at
 
  12  *     http://www.apache.org/licenses/LICENSE-2.0
 
  14  * Unless required by applicable law or agreed to in writing, software
 
  15  * distributed under the License is distributed on an "AS IS" BASIS,
 
  16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
  17  * See the License for the specific language governing permissions and
 
  18  * limitations under the License.
 
  19  * ============LICENSE_END=========================================================
 
  22 package org.onap.ccsdk.features.sdnr.wt.oauthprovider.data;
 
  24 import java.util.List;
 
  26 public class UserTokenPayload {
 
  28     public static final String PROVIDERID_INTERNAL="Internal";
 
  30     private List<String> roles;
 
  31     private String preferredUsername;
 
  32     private String givenName;
 
  33     private String familyName;
 
  37     private String providerId;
 
  39     public long getExp() {
 
  43     public long getIat() {
 
  47     public void setPreferredUsername(String preferredUsername) {
 
  48         this.preferredUsername = preferredUsername;
 
  51     public void setGivenName(String givenName) {
 
  52         this.givenName = givenName;
 
  55     public void setFamilyName(String familyName) {
 
  56         this.familyName = familyName;
 
  59     public void setExp(long exp) {
 
  63     public void setIat(long iat) {
 
  67     public String getPreferredUsername() {
 
  68         return preferredUsername;
 
  71     public String getGivenName() {
 
  75     public String getFamilyName() {
 
  79     public List<String> getRoles() {
 
  83     public void setRoles(List<String> roles) {
 
  87     public void setProviderId(String providerId){ this.providerId = providerId;}
 
  89     public  String getProviderId(){ return this.providerId;}
 
  91     public static UserTokenPayload createInternal(String username, List<String> roles) {
 
  92         UserTokenPayload data = new UserTokenPayload();
 
  93         data.setPreferredUsername(username);
 
  95         data.setProviderId(PROVIDERID_INTERNAL);
 
 100     public boolean isInternal() {
 
 101         return PROVIDERID_INTERNAL.equals(this.providerId);