From 40ee15bcaaaaf26a75dc869699396782cd5f3416 Mon Sep 17 00:00:00 2001
From: mayhew64 <mayhew64@4033779f-a91e-0410-96ef-6bf7bf53c507>
Date: Mon, 12 May 2008 13:10:17 +0000
Subject: [PATCH] Alphabetized categories

git-svn-id: http://webgoat.googlecode.com/svn/trunk/webgoat@347 4033779f-a91e-0410-96ef-6bf7bf53c507
---
 .../org/owasp/webgoat/lessons/Category.java   | 22 +++++++++----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/main/project/JavaSource/org/owasp/webgoat/lessons/Category.java b/main/project/JavaSource/org/owasp/webgoat/lessons/Category.java
index fc5d96242..063b57420 100644
--- a/main/project/JavaSource/org/owasp/webgoat/lessons/Category.java
+++ b/main/project/JavaSource/org/owasp/webgoat/lessons/Category.java
@@ -55,25 +55,25 @@ public class Category implements Comparable
 
 	public final static Category CONCURRENCY = new Category("Concurrency", new Integer(800));
 
-	public final static Category DOS = new Category("Denial of Service", new Integer(900));
+	public final static Category XSS = new Category("Cross-Site Scripting (XSS)", new Integer(900));
 
-	public final static Category ERROR_HANDLING = new Category("Improper Error Handling", new Integer(1000));
+	public final static Category DOS = new Category("Denial of Service", new Integer(1000));
 
-	public final static Category INJECTION = new Category("Injection Flaws", new Integer(1100));
+	public final static Category ERROR_HANDLING = new Category("Improper Error Handling", new Integer(1100));
 
-	public final static Category INSECURE_COMMUNICATION = new Category("Insecure Communication", new Integer(1200));
+	public final static Category INJECTION = new Category("Injection Flaws", new Integer(1200));
+
+	public final static Category INSECURE_COMMUNICATION = new Category("Insecure Communication", new Integer(1300));
 	
-	public final static Category INSECURE_CONFIGURATION = new Category("Insecure Configuration", new Integer(1300));
+	public final static Category INSECURE_CONFIGURATION = new Category("Insecure Configuration", new Integer(1400));
 
-	public final static Category INSECURE_STORAGE = new Category("Insecure Storage", new Integer(1400));
+	public final static Category INSECURE_STORAGE = new Category("Insecure Storage", new Integer(1500));
 
-	public final static Category PARAMETER_TAMPERING = new Category("Parameter Tampering", new Integer(1500));
+	public final static Category PARAMETER_TAMPERING = new Category("Parameter Tampering", new Integer(1600));
 
-	public final static Category SESSION_MANAGEMENT = new Category("Session Management Flaws", new Integer(1600));
+	public final static Category SESSION_MANAGEMENT = new Category("Session Management Flaws", new Integer(1700));
 
-	public final static Category WEB_SERVICES = new Category("Web Services", new Integer(1700));
-
-	public final static Category XSS = new Category("Cross-Site Scripting (XSS)", new Integer(1800));
+	public final static Category WEB_SERVICES = new Category("Web Services", new Integer(1800));
 
 	public final static Category ADMIN_FUNCTIONS = new Category("Admin Functions", new Integer(1900));