From 0cfcc0e9f1548e92de798cde33d18cdf0feb0024 Mon Sep 17 00:00:00 2001 From: Luke Taylor Date: Fri, 30 May 2008 17:51:23 +0000 Subject: [PATCH] Tidying Javadoc --- .../security/ui/cas/ServiceProperties.java | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) 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 the renew 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 true, 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 to true. - * Defaults to false, providing automated single sign on.

+ * Defaults to false, providing automated single sign on. * * @return whether to send the renew parameter to CAS */