Author: doogie
Date: Sat Mar 21 23:45:04 2009 New Revision: 757094 URL: http://svn.apache.org/viewvc?rev=757094&view=rev Log: Fix purely empty whitespace lines, and remove trailing whitespace. Modified: ofbiz/trunk/applications/securityext/src/org/ofbiz/securityext/cert/CertificateServices.java ofbiz/trunk/applications/securityext/src/org/ofbiz/securityext/login/LoginEvents.java ofbiz/trunk/applications/securityext/src/org/ofbiz/securityext/thirdparty/truition/TruitionCoReg.java Modified: ofbiz/trunk/applications/securityext/src/org/ofbiz/securityext/cert/CertificateServices.java URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/securityext/src/org/ofbiz/securityext/cert/CertificateServices.java?rev=757094&r1=757093&r2=757094&view=diff ============================================================================== --- ofbiz/trunk/applications/securityext/src/org/ofbiz/securityext/cert/CertificateServices.java (original) +++ ofbiz/trunk/applications/securityext/src/org/ofbiz/securityext/cert/CertificateServices.java Sat Mar 21 23:45:04 2009 @@ -81,7 +81,7 @@ } // set the issuer provision - Map<String, String> x500Map = KeyStoreUtil.getCertX500Map(cert); + Map<String, String> x500Map = KeyStoreUtil.getCertX500Map(cert); if (importIssuer != null && "Y".equalsIgnoreCase(importIssuer)) { GenericValue provision = delegator.makeValue("X509IssuerProvision"); provision.set("commonName", x500Map.get("CN")); Modified: ofbiz/trunk/applications/securityext/src/org/ofbiz/securityext/login/LoginEvents.java URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/securityext/src/org/ofbiz/securityext/login/LoginEvents.java?rev=757094&r1=757093&r2=757094&view=diff ============================================================================== --- ofbiz/trunk/applications/securityext/src/org/ofbiz/securityext/login/LoginEvents.java (original) +++ ofbiz/trunk/applications/securityext/src/org/ofbiz/securityext/login/LoginEvents.java Sat Mar 21 23:45:04 2009 @@ -6,9 +6,9 @@ * 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 @@ -109,7 +109,7 @@ return emailPassword(request, response); } else { return "success"; - } + } } /** Show the password hint for the userLoginId specified in the request object. @@ -172,11 +172,11 @@ */ public static String emailPassword(HttpServletRequest request, HttpServletResponse response) { String defaultScreenLocation = "component://securityext/widget/EmailSecurityScreens.xml#PasswordEmail"; - + GenericDelegator delegator = (GenericDelegator) request.getAttribute("delegator"); LocalDispatcher dispatcher = (LocalDispatcher) request.getAttribute("dispatcher"); String productStoreId = ProductStoreWorker.getProductStoreId(request); - + String errMsg = null; Map<String, String> subjectData = FastMap.newInstance(); @@ -277,7 +277,7 @@ if (UtilValidate.isEmpty(bodyScreenLocation)) { bodyScreenLocation = defaultScreenLocation; } - + // set the needed variables in new context Map<String, Object> bodyParameters = FastMap.newInstance(); bodyParameters.put("useEncryption", Boolean.valueOf(useEncryption)); @@ -354,7 +354,7 @@ // if we logged in okay, do the check store customer role return ProductEvents.checkStoreCustomerRole(request, response); } - + public static String getUsername(HttpServletRequest request) { String cookieUsername = null; Cookie[] cookies = request.getCookies(); @@ -369,7 +369,7 @@ } return cookieUsername; } - + public static void setUsername(HttpServletRequest request, HttpServletResponse response) { HttpSession session = request.getSession(); String domain = UtilProperties.getPropertyValue("url.properties", "cookie.domain"); @@ -382,7 +382,7 @@ cookie.setPath("/"); cookie.setDomain(domain); response.addCookie(cookie); - } + } } - } + } } Modified: ofbiz/trunk/applications/securityext/src/org/ofbiz/securityext/thirdparty/truition/TruitionCoReg.java URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/securityext/src/org/ofbiz/securityext/thirdparty/truition/TruitionCoReg.java?rev=757094&r1=757093&r2=757094&view=diff ============================================================================== --- ofbiz/trunk/applications/securityext/src/org/ofbiz/securityext/thirdparty/truition/TruitionCoReg.java (original) +++ ofbiz/trunk/applications/securityext/src/org/ofbiz/securityext/thirdparty/truition/TruitionCoReg.java Sat Mar 21 23:45:04 2009 @@ -6,9 +6,9 @@ * 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 |
Free forum by Nabble | Edit this page |