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

org.apache.cxf.rs.security.oauth2.common.AccessTokenRegistration Maven / Gradle / Ivy

There is a newer version: 3.0.0-milestone2
Show newest version
/**
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements. See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership. The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied. See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
package org.apache.cxf.rs.security.oauth2.common;

import java.util.LinkedList;
import java.util.List;

/**
 * Captures the information associated with the access token request.
 */
public class AccessTokenRegistration {
    private Client client; 
    private List requestedScope = new LinkedList();
    private List approvedScope = new LinkedList();
    private String grantType;
    private UserSubject subject;
    
    /**
     * Sets the {@link Client} instance
     * @param client the client
     */
    public void setClient(Client client) {
        this.client = client;
    }
    
    /**
     * Returns the {@link Client} instance
     * @return the client.
     */
    public Client getClient() {
        return client;
    }
   
    /**
     * Sets the requested scope
     * @param requestedScope the scope
     */
    public void setRequestedScope(List requestedScope) {
        this.requestedScope = requestedScope;
    }
    
    /**
     * Gets the requested scope
     * @return the scope
     */
    public List getRequestedScope() {
        return requestedScope;
    }
    
    /**
     * Sets the scope explicitly approved by the end user
     * @param approvedScope the approved scope
     */
    public void setApprovedScope(List approvedScope) {
        this.approvedScope = approvedScope;
    }
    
    /**
     * Gets the scope explicitly approved by the end user
     * @return the scope
     */
    public List getApprovedScope() {
        return approvedScope;
    }
    
    /**
     * Sets the {@link UserSubject) instance capturing 
     * the information about the end user 
     * @param subject the end user subject
     */
    public void setSubject(UserSubject subject) {
        this.subject = subject;
    }
    
    /**
     * Gets the {@link UserSubject) instance capturing 
     * the information about the end user
     * @return the subject
     */
    public UserSubject getSubject() {
        return subject;
    }
    
    /**
     * Sets the type of grant which is exchanged for this token
     * @param grantType the grant type
     */
    public void setGrantType(String grantType) {
        this.grantType = grantType;
    }
    /**
     * Gets the type of grant which is exchanged for this token
     * @return the grant type
     */
    public String getGrantType() {
        return grantType;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy