Java Doc for LDAPTransformer.java in  » Content-Management-System » apache-lenya-2.0 » org » apache » cocoon » transformation » 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 » Content Management System » apache lenya 2.0 » org.apache.cocoon.transformation 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.apache.cocoon.transformation.AbstractTransformer
   org.apache.cocoon.transformation.LDAPTransformer

LDAPTransformer
public class LDAPTransformer extends AbstractTransformer (Code)
The LDAPTransformer can be plugged into a pipeline to transform the SAX events into queries and responses to/from a LDAP interface.
The file will be specified in a parameter tag in the sitemap pipeline to the transformer as follows:

<map:transform type="ldap"/>


The following DTD is valid:
<!ELEMENT execute-query (attribute+ | show-attribute? | scope? | initializer? | initial-context? | authentication? | error-element? | sax-error? doc-element? | row-element? | version? | serverurl? | rootdn? | password? | deref-link? | count-limit? | searchbase, filter)>
<!ELEMENT execute-increment (attribute | show-attribute? | scope? | initializer? | initial-context? | authentication? | error-element? | sax-error? | doc-element? | row-element? | version? | serverurl? | rootdn? | password? | deref-link? | count-limit? | searchbase, filter)>
increments (+1) an integer attribute on a directory-server (ldap)
<!ELEMENT execute-replace (attribute | show-attribute? | scope? | initializer? | initial-context? | authentication? | error-element? | sax-error? | doc-element? | row-element? | version? | serverurl? | rootdn? | password? | deref-link? | count-limit? | searchbase, filter)>
replace attribute on a directory-server (ldap)
<!ELEMENT execute-add (attribute | show-attribute? | scope? | initializer? | initial-context? | authentication? | error-element? | sax-error? | doc-element? | row-element? | version? | serverurl? | rootdn? | password? | deref-link? | count-limit? | searchbase, filter)>
add attribute on a directory-server (ldap)

<!ELEMENT initializer (#PCDATA)>+ (default: "com.sun.jndi.ldap.LdapCtxFactory")
<!ELEMENT initial-context (#EMPTY)>
<!ATTLIST initial-context name CDATA #REQUIRED value CDATA #REQUIRED >
<!ELEMENT authentication (#PCDATA)>+ (default: "simple")
<!ELEMENT version (#PCDATA)>+ (default: "2")
<!ELEMENT serverurl (#PCDATA)>+
<!ELEMENT port (#PCDATA)>+ (default: 389)
<!ELEMENT rootdn (#PCDATA)>+
<!ELEMENT password (#PCDATA)>+
<!ELEMENT scope (ONELEVEL_SCOPE | SUBTREE_SCOPE | OBJECT_SCOPE)>+ (default: ONELEVEL_SCOPE)
<!ELEMENT searchbase (#PCDATA)>+
<!ELEMENT doc-element (#PCDATA)>+ (default: "doc-element")
<!ELEMENT row-element (#PCDATA)>+ (default: "row-element")
<!ELEMENT dn-attribute (#PCDATA)>+ (default: "" meaning no DN attribute)
<!ELEMENT error-element (#PCDATA)>+ (default: "ldap-error") (in case of error returned error tag)
<!ELEMENT sax_error (TRUE | FALSE)>+; (default: FALSE) (throws SAX-Exception instead of error tag)
<!ELEMENT attribute (#PCDATA)>
<!ATTLIST attribute name CDATA #IMPLIED mode (append|replace) 'replace' #IMPLIED > (in case execute-replace or execute-add elements using)
<!ELEMENT show-attribute (TRUE | FALSE)> (default: TRUE)
<!ELEMENT filter (#PCDATA | execute-query)+>
<!ELEMENT deref-link (TRUE | FALSE)> (default: FALSE)
<!ELEMENT count-limit (#PCDATA)> (integer default: 0 -> no limit)
<!ELEMENT time-limit (#PCDATA)> (integer default: 0 -> infinite)
<!ELEMENT debug (TRUE | FALSE)>+; (default: FALSE)

+ can also be defined as parameter in the sitemap.

version:
   $Id: LDAPTransformer.java 433543 2006-08-22 06:22:54Z crossley $

Inner Class :static class LDAPQuery

Field Summary
final public static  StringMAGIC_ATTRIBUTE_ELEMENT
    
final public static  StringMAGIC_ATTRIBUTE_ELEMENT_ATTRIBUTE
    
final public static  StringMAGIC_ATTRIBUTE_ELEMENT_MODE_ATTRIBUTE
    
final public static  StringMAGIC_ATTRIBUTE_ELEMENT_MODE_ATTRIBUTE_DEFAULT
    
final public static  StringMAGIC_ATTRIBUTE_ELEMENT_MODE_ATTRIBUTE_VALUE_A
    
final public static  StringMAGIC_AUTHENTICATION_ELEMENT
    
final public static  StringMAGIC_COUNT_LIMIT_ELEMENT
    
final public static  StringMAGIC_DEBUG_ELEMENT
    
final public static  StringMAGIC_DEREF_LINK_ELEMENT
    
final public static  StringMAGIC_DN_ATTRIBUTE
    
final public static  StringMAGIC_DOC_ELEMENT
    
final public static  StringMAGIC_ENCODING_ELEMENT
    
final public static  StringMAGIC_ERROR_ELEMENT
    
final public static  StringMAGIC_EXECUTE_ADD
    
final public static  StringMAGIC_EXECUTE_INCREMENT
    
final public static  StringMAGIC_EXECUTE_QUERY
    
final public static  StringMAGIC_EXECUTE_REPLACE
    
final public static  StringMAGIC_FILTER_ELEMENT
    
final public static  StringMAGIC_INITIALIZER_ELEMENT
    
final public static  StringMAGIC_INITIAL_CONTEXT_ELEMENT
    
final public static  StringMAGIC_INITIAL_CONTEXT_NAME_ATTRIBUTE
    
final public static  StringMAGIC_INITIAL_CONTEXT_VALUE_ATTRIBUTE
    
final public static  StringMAGIC_PASSWORD_ELEMENT
    
final public static  StringMAGIC_PORT_ELEMENT
    
final public static  StringMAGIC_ROOT_DN_ELEMENT
    
final public static  StringMAGIC_ROW_ELEMENT
    
final public static  StringMAGIC_SAX_ERROR
    
final public static  StringMAGIC_SCOPE_ELEMENT
    
final public static  StringMAGIC_SEARCHBASE_ELEMENT
    
final public static  StringMAGIC_SERVERURL_ELEMENT
    
final public static  StringMAGIC_SHOW_ATTRIBUTE_ELEMENT
    
final public static  StringMAGIC_TIME_LIMIT_ELEMENT
    
final public static  StringMAGIC_VERSION_ELEMENT
    
final public static  intSTATE_INSIDE_ATTRIBUTE_ELEMENT
    
final public static  intSTATE_INSIDE_AUTHENTICATION_ELEMENT
    
final public static  intSTATE_INSIDE_COUNT_LIMIT_ELEMENT
    
final public static  intSTATE_INSIDE_DEBUG_ELEMENT
    
final public static  intSTATE_INSIDE_DEREF_LINK_ELEMENT
    
final public static  intSTATE_INSIDE_DN_ATTRIBUTE
    
final public static  intSTATE_INSIDE_DOC_ELEMENT
    
final public static  intSTATE_INSIDE_ERROR_ELEMENT
    
final public static  intSTATE_INSIDE_EXECUTE_ADD
    
final public static  intSTATE_INSIDE_EXECUTE_ELEMENT
    
final public static  intSTATE_INSIDE_EXECUTE_INCREMENT
    
final public static  intSTATE_INSIDE_EXECUTE_QUERY
    
final public static  intSTATE_INSIDE_EXECUTE_REPLACE
    
final public static  intSTATE_INSIDE_FILTER_ELEMENT
    
final public static  intSTATE_INSIDE_INITIALIZER_ELEMENT
    
final public static  intSTATE_INSIDE_INITIAL_CONTEXT_ELEMENT
    
final public static  intSTATE_INSIDE_PASSWORD_ELEMENT
    
final public static  intSTATE_INSIDE_PORT_ELEMENT
    
final public static  intSTATE_INSIDE_ROOT_DN_ELEMENT
    
final public static  intSTATE_INSIDE_ROW_ELEMENT
    
final public static  intSTATE_INSIDE_SAX_ERROR_ELEMENT
    
final public static  intSTATE_INSIDE_SCOPE_ELEMENT
    
final public static  intSTATE_INSIDE_SEARCHBASE_ELEMENT
    
final public static  intSTATE_INSIDE_SERVERURL_ELEMENT
    
final public static  intSTATE_INSIDE_SHOW_ATTRIBUTE_ELEMENT
    
final public static  intSTATE_INSIDE_TIME_LIMIT_ELEMENT
    
final public static  intSTATE_INSIDE_VERSION_ELEMENT
    
final public static  intSTATE_OUTSIDE
    
protected  Stringcurrent_name
    
protected  intcurrent_query_index
    
protected  intcurrent_state
    
protected  StringBuffercurrent_value
    
protected  HashMapdefault_properties
    
protected  LexicalHandlerlexical_handler
    
final public static  Stringmy_name
    
final public static  Stringmy_uri
    
protected  Vectorqueries
    
protected  XMLConsumerxml_consumer
    


Method Summary
public  voidcharacters(char ary, int start, int length)
    
protected  voiddata(String data)
    
protected  voidend(String name)
    
protected  voidendAttributeElement()
    
protected  voidendAuthenticationElement()
    
protected  voidendCountLimitElement()
    
protected  voidendDebugElement()
    
protected  voidendDerefLinkElement()
    
protected  voidendDnAttribute()
    
protected  voidendDocElement()
    
public  voidendElement(String uri, String name, String raw)
    
protected  voidendErrorElement()
    
protected  voidendExecuteElement(int state, String name)
    
protected  voidendFilterElement()
    
protected  voidendInitialContextElement()
    
protected  voidendInitializerElement()
    
protected  voidendPasswordElement()
    
protected  voidendPortElement()
    
protected  voidendRootDnElement()
    
protected  voidendRowElement()
    
protected  voidendSaxError()
    
protected  voidendScopeElement()
    
protected  voidendSearchbaseElement()
    
protected  voidendServerurlElement()
    
protected  voidendShowAttributeElement()
    
protected  voidendTimeLimitElement()
    
protected  voidendVersionElement()
    
protected  voidexecuteQuery(int index)
     This will be the meat of LDAPTransformer, where the query is run.
protected  LDAPQuerygetCurrentQuery()
    
protected  LDAPQuerygetQuery(int i)
    
protected static  StringgetStringValue(Object object)
    
final public  LoggergetTheLogger()
    
protected  voidsetDefaultProperty(Parameters parameters, String propertyName)
    
public  voidsetDocumentLocator(Locator locator)
    
public  voidsetup(SourceResolver resolver, Map objectModel, String source, Parameters parameters)
    
protected  voidstart(String name, AttributesImpl attr)
    
protected  voidstartAttributeElement(Attributes attributes)
    
public  voidstartElement(String uri, String name, String raw, Attributes attributes)
    
protected  voidstartExecuteElement()
    
protected  voidstartExecuteElement(int state, String name)
    
protected  voidstartFilterElement(Attributes attributes)
    
protected  voidstartInitialContextElement(Attributes attributes)
    
protected  voidstartParameterElement(int state, String name)
    
protected  voidstartQueryParameterElement(int state, String name)
    
protected  voidstartShowAttributeElement(Attributes attributes)
    
protected  voidstoreQuery(int nextState)
    
protected static  voidthrowIllegalStateException(String message)
    

Field Detail
MAGIC_ATTRIBUTE_ELEMENT
final public static String MAGIC_ATTRIBUTE_ELEMENT(Code)
The LDAP namespace element names



MAGIC_ATTRIBUTE_ELEMENT_ATTRIBUTE
final public static String MAGIC_ATTRIBUTE_ELEMENT_ATTRIBUTE(Code)



MAGIC_ATTRIBUTE_ELEMENT_MODE_ATTRIBUTE
final public static String MAGIC_ATTRIBUTE_ELEMENT_MODE_ATTRIBUTE(Code)



MAGIC_ATTRIBUTE_ELEMENT_MODE_ATTRIBUTE_DEFAULT
final public static String MAGIC_ATTRIBUTE_ELEMENT_MODE_ATTRIBUTE_DEFAULT(Code)



MAGIC_ATTRIBUTE_ELEMENT_MODE_ATTRIBUTE_VALUE_A
final public static String MAGIC_ATTRIBUTE_ELEMENT_MODE_ATTRIBUTE_VALUE_A(Code)



MAGIC_AUTHENTICATION_ELEMENT
final public static String MAGIC_AUTHENTICATION_ELEMENT(Code)



MAGIC_COUNT_LIMIT_ELEMENT
final public static String MAGIC_COUNT_LIMIT_ELEMENT(Code)



MAGIC_DEBUG_ELEMENT
final public static String MAGIC_DEBUG_ELEMENT(Code)



MAGIC_DEREF_LINK_ELEMENT
final public static String MAGIC_DEREF_LINK_ELEMENT(Code)



MAGIC_DN_ATTRIBUTE
final public static String MAGIC_DN_ATTRIBUTE(Code)



MAGIC_DOC_ELEMENT
final public static String MAGIC_DOC_ELEMENT(Code)



MAGIC_ENCODING_ELEMENT
final public static String MAGIC_ENCODING_ELEMENT(Code)



MAGIC_ERROR_ELEMENT
final public static String MAGIC_ERROR_ELEMENT(Code)



MAGIC_EXECUTE_ADD
final public static String MAGIC_EXECUTE_ADD(Code)



MAGIC_EXECUTE_INCREMENT
final public static String MAGIC_EXECUTE_INCREMENT(Code)



MAGIC_EXECUTE_QUERY
final public static String MAGIC_EXECUTE_QUERY(Code)



MAGIC_EXECUTE_REPLACE
final public static String MAGIC_EXECUTE_REPLACE(Code)



MAGIC_FILTER_ELEMENT
final public static String MAGIC_FILTER_ELEMENT(Code)



MAGIC_INITIALIZER_ELEMENT
final public static String MAGIC_INITIALIZER_ELEMENT(Code)



MAGIC_INITIAL_CONTEXT_ELEMENT
final public static String MAGIC_INITIAL_CONTEXT_ELEMENT(Code)



MAGIC_INITIAL_CONTEXT_NAME_ATTRIBUTE
final public static String MAGIC_INITIAL_CONTEXT_NAME_ATTRIBUTE(Code)



MAGIC_INITIAL_CONTEXT_VALUE_ATTRIBUTE
final public static String MAGIC_INITIAL_CONTEXT_VALUE_ATTRIBUTE(Code)



MAGIC_PASSWORD_ELEMENT
final public static String MAGIC_PASSWORD_ELEMENT(Code)



MAGIC_PORT_ELEMENT
final public static String MAGIC_PORT_ELEMENT(Code)



MAGIC_ROOT_DN_ELEMENT
final public static String MAGIC_ROOT_DN_ELEMENT(Code)



MAGIC_ROW_ELEMENT
final public static String MAGIC_ROW_ELEMENT(Code)



MAGIC_SAX_ERROR
final public static String MAGIC_SAX_ERROR(Code)



MAGIC_SCOPE_ELEMENT
final public static String MAGIC_SCOPE_ELEMENT(Code)



MAGIC_SEARCHBASE_ELEMENT
final public static String MAGIC_SEARCHBASE_ELEMENT(Code)



MAGIC_SERVERURL_ELEMENT
final public static String MAGIC_SERVERURL_ELEMENT(Code)



MAGIC_SHOW_ATTRIBUTE_ELEMENT
final public static String MAGIC_SHOW_ATTRIBUTE_ELEMENT(Code)



MAGIC_TIME_LIMIT_ELEMENT
final public static String MAGIC_TIME_LIMIT_ELEMENT(Code)



MAGIC_VERSION_ELEMENT
final public static String MAGIC_VERSION_ELEMENT(Code)



STATE_INSIDE_ATTRIBUTE_ELEMENT
final public static int STATE_INSIDE_ATTRIBUTE_ELEMENT(Code)



STATE_INSIDE_AUTHENTICATION_ELEMENT
final public static int STATE_INSIDE_AUTHENTICATION_ELEMENT(Code)



STATE_INSIDE_COUNT_LIMIT_ELEMENT
final public static int STATE_INSIDE_COUNT_LIMIT_ELEMENT(Code)



STATE_INSIDE_DEBUG_ELEMENT
final public static int STATE_INSIDE_DEBUG_ELEMENT(Code)



STATE_INSIDE_DEREF_LINK_ELEMENT
final public static int STATE_INSIDE_DEREF_LINK_ELEMENT(Code)



STATE_INSIDE_DN_ATTRIBUTE
final public static int STATE_INSIDE_DN_ATTRIBUTE(Code)



STATE_INSIDE_DOC_ELEMENT
final public static int STATE_INSIDE_DOC_ELEMENT(Code)



STATE_INSIDE_ERROR_ELEMENT
final public static int STATE_INSIDE_ERROR_ELEMENT(Code)



STATE_INSIDE_EXECUTE_ADD
final public static int STATE_INSIDE_EXECUTE_ADD(Code)



STATE_INSIDE_EXECUTE_ELEMENT
final public static int STATE_INSIDE_EXECUTE_ELEMENT(Code)



STATE_INSIDE_EXECUTE_INCREMENT
final public static int STATE_INSIDE_EXECUTE_INCREMENT(Code)



STATE_INSIDE_EXECUTE_QUERY
final public static int STATE_INSIDE_EXECUTE_QUERY(Code)



STATE_INSIDE_EXECUTE_REPLACE
final public static int STATE_INSIDE_EXECUTE_REPLACE(Code)



STATE_INSIDE_FILTER_ELEMENT
final public static int STATE_INSIDE_FILTER_ELEMENT(Code)



STATE_INSIDE_INITIALIZER_ELEMENT
final public static int STATE_INSIDE_INITIALIZER_ELEMENT(Code)



STATE_INSIDE_INITIAL_CONTEXT_ELEMENT
final public static int STATE_INSIDE_INITIAL_CONTEXT_ELEMENT(Code)



STATE_INSIDE_PASSWORD_ELEMENT
final public static int STATE_INSIDE_PASSWORD_ELEMENT(Code)



STATE_INSIDE_PORT_ELEMENT
final public static int STATE_INSIDE_PORT_ELEMENT(Code)



STATE_INSIDE_ROOT_DN_ELEMENT
final public static int STATE_INSIDE_ROOT_DN_ELEMENT(Code)



STATE_INSIDE_ROW_ELEMENT
final public static int STATE_INSIDE_ROW_ELEMENT(Code)



STATE_INSIDE_SAX_ERROR_ELEMENT
final public static int STATE_INSIDE_SAX_ERROR_ELEMENT(Code)



STATE_INSIDE_SCOPE_ELEMENT
final public static int STATE_INSIDE_SCOPE_ELEMENT(Code)



STATE_INSIDE_SEARCHBASE_ELEMENT
final public static int STATE_INSIDE_SEARCHBASE_ELEMENT(Code)



STATE_INSIDE_SERVERURL_ELEMENT
final public static int STATE_INSIDE_SERVERURL_ELEMENT(Code)



STATE_INSIDE_SHOW_ATTRIBUTE_ELEMENT
final public static int STATE_INSIDE_SHOW_ATTRIBUTE_ELEMENT(Code)



STATE_INSIDE_TIME_LIMIT_ELEMENT
final public static int STATE_INSIDE_TIME_LIMIT_ELEMENT(Code)



STATE_INSIDE_VERSION_ELEMENT
final public static int STATE_INSIDE_VERSION_ELEMENT(Code)



STATE_OUTSIDE
final public static int STATE_OUTSIDE(Code)
The states we are allowed to be in



current_name
protected String current_name(Code)
The name of the value element we're currently receiving



current_query_index
protected int current_query_index(Code)
The offset of the current query in the queries list



current_state
protected int current_state(Code)
The current state of the event receiving FSM



current_value
protected StringBuffer current_value(Code)
The value of the value element we're currently receiving



default_properties
protected HashMap default_properties(Code)
Default parameters that might apply to all queries



lexical_handler
protected LexicalHandler lexical_handler(Code)



my_name
final public static String my_name(Code)



my_uri
final public static String my_uri(Code)
The LDAP namespace ("http://apache.org/cocoon/LDAP/1.0")



queries
protected Vector queries(Code)
The list of queries that we're currently working on



xml_consumer
protected XMLConsumer xml_consumer(Code)
SAX producing state information





Method Detail
characters
public void characters(char ary, int start, int length) throws SAXException(Code)



data
protected void data(String data) throws SAXException(Code)



end
protected void end(String name) throws SAXException(Code)



endAttributeElement
protected void endAttributeElement()(Code)



endAuthenticationElement
protected void endAuthenticationElement()(Code)



endCountLimitElement
protected void endCountLimitElement()(Code)



endDebugElement
protected void endDebugElement()(Code)



endDerefLinkElement
protected void endDerefLinkElement()(Code)



endDnAttribute
protected void endDnAttribute()(Code)



endDocElement
protected void endDocElement()(Code)



endElement
public void endElement(String uri, String name, String raw) throws SAXException(Code)



endErrorElement
protected void endErrorElement()(Code)



endExecuteElement
protected void endExecuteElement(int state, String name) throws SAXException(Code)



endFilterElement
protected void endFilterElement()(Code)



endInitialContextElement
protected void endInitialContextElement()(Code)



endInitializerElement
protected void endInitializerElement()(Code)



endPasswordElement
protected void endPasswordElement()(Code)



endPortElement
protected void endPortElement()(Code)



endRootDnElement
protected void endRootDnElement()(Code)



endRowElement
protected void endRowElement()(Code)



endSaxError
protected void endSaxError()(Code)



endScopeElement
protected void endScopeElement()(Code)



endSearchbaseElement
protected void endSearchbaseElement()(Code)



endServerurlElement
protected void endServerurlElement()(Code)



endShowAttributeElement
protected void endShowAttributeElement()(Code)



endTimeLimitElement
protected void endTimeLimitElement()(Code)



endVersionElement
protected void endVersionElement()(Code)



executeQuery
protected void executeQuery(int index) throws SAXException(Code)
This will be the meat of LDAPTransformer, where the query is run.



getCurrentQuery
protected LDAPQuery getCurrentQuery()(Code)



getQuery
protected LDAPQuery getQuery(int i)(Code)



getStringValue
protected static String getStringValue(Object object)(Code)



getTheLogger
final public Logger getTheLogger()(Code)



setDefaultProperty
protected void setDefaultProperty(Parameters parameters, String propertyName)(Code)
My very own methods



setDocumentLocator
public void setDocumentLocator(Locator locator)(Code)
BEGIN SAX ContentHandler handlers



setup
public void setup(SourceResolver resolver, Map objectModel, String source, Parameters parameters) throws ProcessingException, SAXException, IOException(Code)
SitemapComponent methods



start
protected void start(String name, AttributesImpl attr) throws SAXException(Code)



startAttributeElement
protected void startAttributeElement(Attributes attributes)(Code)



startElement
public void startElement(String uri, String name, String raw, Attributes attributes) throws SAXException(Code)



startExecuteElement
protected void startExecuteElement()(Code)



startExecuteElement
protected void startExecuteElement(int state, String name)(Code)



startFilterElement
protected void startFilterElement(Attributes attributes)(Code)



startInitialContextElement
protected void startInitialContextElement(Attributes attributes)(Code)



startParameterElement
protected void startParameterElement(int state, String name)(Code)



startQueryParameterElement
protected void startQueryParameterElement(int state, String name)(Code)



startShowAttributeElement
protected void startShowAttributeElement(Attributes attributes)(Code)



storeQuery
protected void storeQuery(int nextState)(Code)



throwIllegalStateException
protected static void throwIllegalStateException(String message)(Code)




www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.