/******************************************************************************* * Copyright 2018 The MIT Internet Trust Consortium * * Portions copyright 2011-2013 The MITRE Corporation * * Licensed 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.mitre.openid.connect.client.model; /** * * Data container to facilitate returns from the IssuerService API. * * @author jricher * */ public class IssuerServiceResponse { private String issuer; private String loginHint; private String targetLinkUri; private String redirectUrl; /** * @param issuer * @param loginHint * @param targetLinkUri */ public IssuerServiceResponse(String issuer, String loginHint, String targetLinkUri) { this.issuer = issuer; this.loginHint = loginHint; this.targetLinkUri = targetLinkUri; } /** * @param redirectUrl */ public IssuerServiceResponse(String redirectUrl) { this.redirectUrl = redirectUrl; } /** * @return the issuer */ public String getIssuer() { return issuer; } /** * @param issuer the issuer to set */ public void setIssuer(String issuer) { this.issuer = issuer; } /** * @return the loginHint */ public String getLoginHint() { return loginHint; } /** * @param loginHint the loginHint to set */ public void setLoginHint(String loginHint) { this.loginHint = loginHint; } /** * @return the targetLinkUri */ public String getTargetLinkUri() { return targetLinkUri; } /** * @param targetLinkUri the targetLinkUri to set */ public void setTargetLinkUri(String targetLinkUri) { this.targetLinkUri = targetLinkUri; } /** * @return the redirectUrl */ public String getRedirectUrl() { return redirectUrl; } /** * @param redirectUrl the redirectUrl to set */ public void setRedirectUrl(String redirectUrl) { this.redirectUrl = redirectUrl; } /** * If the redirect url has been set, then we should send a redirect using it instead of processing things. */ public boolean shouldRedirect() { return this.redirectUrl != null; } }