Package com.autonomy.utilities

Class Summary
AutnHttpURLConnection This class is intended to simulate some aspects of java.net.HttpURLConnection while allowing the user to set a timeout on the underlying socket's read operations.
AutnHttpURLConnectionBinary Binary version of AutnHttpURLConnection.
Base64 Encodes and decodes to and from Base64 notation.
Base64.InputStream A Base64#InputStream will read data from another InputStream, given in the constructor, and encode/decode to/from Base64 notation on the fly.
Base64.OutputStream A Base64#OutputStream will write data to another OutputStream, given in the constructor, and encode/decode to/from Base64 notation on the fly.
BrowserSniffer Interprets information about the internet browser received from the User-Agent request header field generated by browser requests
ByteArrayBuffer Analogy of a StringBuffer but uses a byte array not a char array.
Useful for storing a dynamic set of bytes
CommunityInfoBreaker This class takes a DRE reference from an agent DRE, which come in the form:
       group/user/agent
and separates it to yield the group, user and agent name that the given record belongs to.
DateManager This class takes a java Calendar object as input, and outputs the day, month and year so that DateManager dm = new DateManager( Calendar.getInstance() );
out.println( dm.getYear() + "/" + dm.getMonth() + "/" + dm.getDay() );
will return a string of the form:
YYYY/MM/DD
regardless of which of the two getYear/getMonth/getDay methods are used This is done to cache the many on-the-fly String<->int conversions the search panes do on these dates.
DateUtils Class of utilities specifically to deal with dates and times
EventDrivenXMLParser EventDrivenXMLParser is a simple stream-oriented parser.
FileUtils Library of function specifically for use with files
HTMLUtils Library of functions specifically for use for drawing HTML text.
Note: These functions make calls to the deprecated session.get/put/removeValue() methods instead of the new get/set/removeAttribute() methods which perform exactly the same tasks.
HTTPFileUpload Class to process any form submitted from a HTML page using the:
<form enctype="multipart/form-data"> HTML tag.
HTTPUtils Library of functions specifically used for processing HTTP connections
JavaConfig Deprecated. This is no longer supported.
League This class maintains a list of objects and scores.
LeagueEntry This class represents the unit entry for the League object It contains one named String and its score.
LogFile Class to create and maintain log files.
MathUtils This class provides mathematical functions not already in java.lang.Math
NameValuePair  
NumberUtils Library of functions specifically for working with numbers
OrderedHashtable Exactly the same as java.util.Hashtable except the keys() method returns the elements in the order they were inserted in the Hashtable
ResultEnumerator To handle the overspill of results on to multiple pages in Portal-in-a-Box.
Sleeper  
StringUtils Library of functions used for working with Strings
TermsNWeights Class representing terms and weights from a DRE
WildFilter Implmentation of the FilenameFilter interface that uses standard * wildcards to isolate files.