Package net.shibboleth.idp.cas.protocol
Class TicketValidationRequest
- java.lang.Object
-
- net.shibboleth.idp.cas.protocol.ServiceTicketResponse
-
- net.shibboleth.idp.cas.protocol.TicketValidationRequest
-
public class TicketValidationRequest extends ServiceTicketResponse
Ticket validation request message.
-
-
Constructor Summary
Constructors Constructor Description TicketValidationRequest(String service, String ticket)Creates a CAS ticket validation request message.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetPgtUrl()Get the proxy-granting ticket validation URL.booleanisRenew()Get whether to require fresh subject interaction to succeed.voidsetPgtUrl(String url)Set the proxy-granting ticket validation URL.voidsetRenew(boolean force)Set whether to require fresh subject interaction to succeed.-
Methods inherited from class net.shibboleth.idp.cas.protocol.ServiceTicketResponse
getRedirectUrl, getService, getTicket, getTicketParameterName, isSaml, setSaml
-
-
-
-
Field Detail
-
renew
private boolean renew
CAS protocol renew flag.
-
pgtUrl
@Nonnull private String pgtUrl
Proxy-granting ticket validation URL.
-
-
Method Detail
-
isRenew
public boolean isRenew()
Get whether to require fresh subject interaction to succeed.- Returns:
- whether subject interaction must occur
-
setRenew
public void setRenew(boolean force)
Set whether to require fresh subject interaction to succeed.- Parameters:
force- whether subject interaction must occur
-
getPgtUrl
@Nonnull public String getPgtUrl()
Get the proxy-granting ticket validation URL.- Returns:
- proxy-granting ticket validation URL
-
setPgtUrl
public void setPgtUrl(@Nonnull String url)Set the proxy-granting ticket validation URL.- Parameters:
url- proxy-granting ticket validation URL
-
-