Source Code Cross Referenced for ServerStrings.java in  » Net » edtftpj » com » enterprisedt » net » ftp » 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 » Net » edtftpj » com.enterprisedt.net.ftp 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /**
002:         *
003:         *  Copyright (C) 2000-2007  Enterprise Distributed Technologies Ltd
004:         *
005:         *  www.enterprisedt.com
006:         *
007:         *  Change Log:
008:         *
009:         *        $Log: ServerStrings.java,v $
010:         *        Revision 1.1  2007/01/12 02:04:23  bruceb
011:         *        string matchers
012:         *
013:         *
014:         */package com.enterprisedt.net.ftp;
015:
016:        import java.util.Vector;
017:
018:        /**
019:         *  Manages strings that match various FTP server replies for
020:         *  various situations. The strings are not exact copies of server
021:         *  replies, but rather fragments that match server replies (so that
022:         *  as many servers as possible can be supported). All fragments are
023:         *  managed internally in upper case to make matching faster.
024:         *
025:         *  @author      Bruce Blackshaw
026:         *  @version     $Revision: 1.1 $
027:         */
028:        class ServerStrings {
029:
030:            private Vector strings = new Vector();
031:
032:            /**
033:             * Add a fragment to be managed
034:             * 
035:             * @param string   new message fragment
036:             */
037:            public void add(String string) {
038:                strings.addElement(string.toUpperCase());
039:            }
040:
041:            /**
042:             * Get all fragments being managed
043:             * 
044:             * @return array of management fragments
045:             */
046:            public String[] getAll() {
047:                String[] result = new String[strings.size()];
048:                strings.copyInto(result);
049:                return result;
050:            }
051:
052:            /**
053:             * Clear all fragments being managed
054:             */
055:            public void clearAll() {
056:                strings.removeAllElements();
057:            }
058:
059:            /**
060:             * Fragment count
061:             * 
062:             * @return number of fragments being managed
063:             */
064:            public int size() {
065:                return strings.size();
066:            }
067:
068:            /**
069:             * Remove a managed fragment. Only exact matches (ignoring case)
070:             * are removed
071:             * 
072:             * @param string   string to be removed
073:             * @return true if removed, false if not found
074:             */
075:            public boolean remove(String string) {
076:                String upper = string.toUpperCase();
077:                for (int i = 0; i < strings.size(); i++) {
078:                    String msg = (String) strings.elementAt(i);
079:                    if (upper.equals(msg)) {
080:                        strings.removeElementAt(i);
081:                        return true;
082:                    }
083:                }
084:                return false;
085:            }
086:
087:            /**
088:             * Returns true if any fragment is found in the supplied
089:             * string.
090:             * 
091:             * @param reply   server reply to test for matches
092:             * @return true for a match, false otherwise
093:             */
094:            public boolean matches(String reply) {
095:                String upper = reply.toUpperCase();
096:                for (int i = 0; i < strings.size(); i++) {
097:                    String msg = (String) strings.elementAt(i);
098:                    if (upper.indexOf(msg) >= 0)
099:                        return true;
100:                }
101:                return false;
102:            }
103:
104:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.