Source Code Cross Referenced for UsersRepository.java in  » Report » jmagallanes-1.0 » com » calipso » reportgenerator » reportmanager » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Report » jmagallanes 1.0 » com.calipso.reportgenerator.reportmanager 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        package com.calipso.reportgenerator.reportmanager;
002:
003:        import com.calipso.reportgenerator.common.InfoException;
004:
005:        import java.util.HashMap;
006:        import java.util.StringTokenizer;
007:        import java.util.Iterator;
008:        import java.io.*;
009:
010:        import com.calipso.reportgenerator.common.LanguageTraslator;
011:        import com.calipso.reportgenerator.common.VersionProperties;
012:
013:        /**
014:         * Representa el repositorio de los usuarios con
015:         * sus respectivas contrasenas
016:         */
017:
018:        public class UsersRepository {
019:
020:            private HashMap users;
021:            private String repositoryPath;
022:
023:            /**
024:             * Crea una instancia de <code>UsersRepository</code>
025:             * @param repositoryPath
026:             */
027:            public UsersRepository(String repositoryPath) throws InfoException {
028:                this .repositoryPath = repositoryPath;
029:                initialize(new File(repositoryPath));
030:            }
031:
032:            /**
033:             * Llena un diccionario con los valores del repositorio
034:             * en caso de que este ultimo exista
035:             * @param repositoryFile
036:             * @throws InfoException
037:             */
038:            private void initialize(File repositoryFile) throws InfoException {
039:                if (repositoryFile.exists()) {
040:                    fillUsersMapFrom(repositoryFile);
041:                }
042:            }
043:
044:            /**
045:             * Llena un diccionario con los valores del repositorio.
046:             * Cada entrada al diccionario contiene el nombre de usuario
047:             * mientras que a cada entrada le corresponden las contrasenas
048:             * de los usuarios.
049:             * @param repositoryFile
050:             */
051:            private void fillUsersMapFrom(File repositoryFile)
052:                    throws InfoException {
053:                FileReader fileReader = null;
054:                try {
055:                    fileReader = new FileReader(repositoryFile);
056:                } catch (FileNotFoundException e) {
057:                    throw new InfoException(LanguageTraslator.traslate("479"),
058:                            e);
059:                }
060:                BufferedReader bufferedReader = new BufferedReader(fileReader);
061:                String line = null;
062:                try {
063:                    line = bufferedReader.readLine();
064:                    while (line != null) {
065:                        if (!line.equals("")) {
066:                            StringTokenizer tokenizer = new StringTokenizer(
067:                                    line, "=");
068:                            String user = tokenizer.nextToken();
069:                            String password = tokenizer.nextToken();
070:                            getUsers().put(user, password);
071:                        }
072:                        line = bufferedReader.readLine();
073:                    }
074:                    bufferedReader.close();
075:                    fileReader.close();
076:                } catch (IOException e) {
077:                    throw new InfoException(LanguageTraslator.traslate("480"),
078:                            e);
079:                }
080:
081:            }
082:
083:            /**
084:             * Valida un usuario. En caso de ser un usuario inexistente
085:             * permite dar de alta el usuario siempre y cuando se ingrese
086:             * la contrasena de root o admin. Por ello solo root puede dar
087:             * de alta usuarios.
088:             * @param userName nombre de usuario
089:             * @param password contrasena de usuario
090:             * @return
091:             */
092:            public boolean validate(String userName, String password)
093:                    throws InfoException {
094:                boolean returnVal = false;
095:                if (getUsers().containsKey(userName)) {
096:                    String encryptPassword = PasswordEncryptor
097:                            .getEncryptedPassword(password);
098:                    String storedPassword = getUsers().get(userName).toString();
099:                    if (storedPassword.trim().equalsIgnoreCase(
100:                            encryptPassword.trim())) {
101:                        returnVal = true;
102:                    }
103:                }
104:                return returnVal;
105:            }
106:
107:            /**
108:             * Cambia la contrasena de un usuario
109:             * @param userName nombre de usuario
110:             * @param newPasswd nueva contrasena
111:             */
112:            public void changePasswd(String userName, String newPasswd)
113:                    throws InfoException {
114:                getUsers().remove(userName);
115:                getUsers().put(userName, newPasswd);
116:                updateChanges();
117:            }
118:
119:            /**
120:             * Borra un usuario del repositorio
121:             * @param userName
122:             */
123:            public void deleteUser(String userName) throws InfoException {
124:                getUsers().remove(userName);
125:                updateChanges();
126:            }
127:
128:            /**
129:             * Actualiza los cambios realizados en el repositorio.
130:             */
131:            private void updateChanges() throws InfoException {
132:                try {
133:                    File outputFile = new File(repositoryPath);
134:                    FileWriter fileWriter = null;
135:                    fileWriter = new FileWriter(outputFile.getPath(), true);
136:                    BufferedWriter bufferedWriter = new BufferedWriter(
137:                            fileWriter);
138:                    Iterator iterator = getUsers().keySet().iterator();
139:                    while (iterator.hasNext()) {
140:                        String currentUserName = iterator.next().toString();
141:                        String hashedPasswd = getUsers().get(currentUserName)
142:                                .toString();
143:                        bufferedWriter.write(currentUserName + "="
144:                                + hashedPasswd + '\n');
145:                    }
146:                    bufferedWriter.close();
147:                    fileWriter.close();
148:                } catch (Exception e) {
149:                    throw new InfoException(LanguageTraslator.traslate("481"),
150:                            e);
151:                }
152:            }
153:
154:            /**
155:             * Agrega un nuevo usuario.
156:             * @param userName
157:             * @param password
158:             */
159:            public void addNewUser(String userName, String password)
160:                    throws InfoException {
161:                if (getUsers().containsKey(userName)) {
162:                    throw new InfoException(LanguageTraslator.traslate("394"));
163:                }
164:                File outputFile = new File(repositoryPath);
165:                FileWriter fileWriter = null;
166:                try {
167:                    fileWriter = new FileWriter(outputFile.getPath(), true);
168:                    BufferedWriter bufferedWriter = new BufferedWriter(
169:                            fileWriter);
170:                    bufferedWriter.write(userName + "="
171:                            + PasswordEncryptor.getEncryptedPassword(password)
172:                            + '\n');
173:                    bufferedWriter.close();
174:                    fileWriter.close();
175:                } catch (Exception e) {
176:                    throw new InfoException(LanguageTraslator.traslate("482"),
177:                            e);
178:                }
179:            }
180:
181:            /**
182:             * Devuelve los usuarios del repositorio
183:             * @return
184:             */
185:            private HashMap getUsers() {
186:                if (users == null) {
187:                    users = new HashMap();
188:                }
189:                return users;
190:            }
191:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.