diff --git a/cas/src/main/java/org/springframework/security/ui/cas/ServiceProperties.java b/cas/src/main/java/org/springframework/security/ui/cas/ServiceProperties.java index 98812c885a..8086ce6501 100644 --- a/cas/src/main/java/org/springframework/security/ui/cas/ServiceProperties.java +++ b/cas/src/main/java/org/springframework/security/ui/cas/ServiceProperties.java @@ -21,9 +21,10 @@ import org.springframework.util.Assert; /** * Stores properties related to this CAS service. - *
Each web application capable of processing CAS tickets is known as a service. + *
+ * Each web application capable of processing CAS tickets is known as a service. * This class stores the properties that are relevant to the local CAS service, being the application - * that is being secured by Spring Security.
+ * that is being secured by Spring Security. * * @author Ben Alex * @version $Id$ @@ -42,7 +43,8 @@ public class ServiceProperties implements InitializingBean { /** * Represents the service the user is authenticating to. - *This service is the callback URL belonging to the local Spring Security System for Spring secured application. + *
+ * This service is the callback URL belonging to the local Spring Security System for Spring secured application. * For example, *
* https://www.mycompany.com/application/j_spring_cas_security_check @@ -56,10 +58,12 @@ public class ServiceProperties implements InitializingBean { /** * Indicates whether therenew
parameter should be sent to the CAS login URL and CAS - * validation URL.If
true
, it will force CAS to authenticate the user again (even if the + * validation URL. + *+ * If
+ * Defaults totrue
, it will force CAS to authenticate the user again (even if the * user has previously authenticated). During ticket validation it will require the ticket was generated as a * consequence of an explicit login. High security applications would probably set this totrue
. - * Defaults tofalse
, providing automated single sign on.false
, providing automated single sign on. * * @return whether to send therenew
parameter to CAS */