/** * Copyright 2010 Newcastle University * * http://research.ncl.ac.uk/smart/ * * 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.amber.oauth2.as.response; import org.apache.amber.oauth2.common.OAuth; import org.apache.amber.oauth2.common.message.OAuthResponse; /** * @author Maciej Machulak (m.p.machulak@ncl.ac.uk) * @author Lukasz Moren (lukasz.moren@ncl.ac.uk) * @author Aad van Moorsel (aad.vanmoorsel@ncl.ac.uk) */ public class OAuthASResponse extends OAuthResponse { protected OAuthASResponse(String uri, int responseStatus) { super(uri, responseStatus); } public static OAuthAuthorizationResponseBuilder authorizationResponse(int code) { return new OAuthAuthorizationResponseBuilder(code); } public static OAuthTokenResponseBuilder tokenResponse(int code) { return new OAuthTokenResponseBuilder(code); } public static class OAuthAuthorizationResponseBuilder extends OAuthResponseBuilder { public OAuthAuthorizationResponseBuilder(int responseCode) { super(responseCode); } public OAuthAuthorizationResponseBuilder setState(String state) { this.parameters.put(OAuth.OAUTH_STATE, state); return this; } public OAuthAuthorizationResponseBuilder setCode(String code) { this.parameters.put(OAuth.OAUTH_CODE, code); return this; } public OAuthAuthorizationResponseBuilder setAccessToken(String token) { this.parameters.put(OAuth.OAUTH_ACCESS_TOKEN, token); return this; } public OAuthAuthorizationResponseBuilder setExpiresIn(String expiresIn) { this.parameters.put(OAuth.OAUTH_EXPIRES_IN, expiresIn); return this; } public OAuthAuthorizationResponseBuilder location(String location) { this.location = location; return this; } public OAuthAuthorizationResponseBuilder setParam(String key, String value) { this.parameters.put(key, value); return this; } } public static class OAuthTokenResponseBuilder extends OAuthResponseBuilder { public OAuthTokenResponseBuilder(int responseCode) { super(responseCode); } public OAuthTokenResponseBuilder setAccessToken(String token) { this.parameters.put(OAuth.OAUTH_ACCESS_TOKEN, token); return this; } public OAuthTokenResponseBuilder setExpiresIn(String expiresIn) { this.parameters.put(OAuth.OAUTH_EXPIRES_IN, expiresIn); return this; } public OAuthTokenResponseBuilder setRefreshToken(String refreshToken) { this.parameters.put(OAuth.OAUTH_REFRESH_TOKEN, refreshToken); return this; } public OAuthTokenResponseBuilder setParam(String key, String value) { this.parameters.put(key, value); return this; } public OAuthTokenResponseBuilder location(String location) { this.location = location; return this; } } }