com.sun.faces.config.processor
public interface ConfigProcessor
This interface provides a CoR structure for procesing JSF configuration resources.
Modifier and Type | Method and Description |
---|---|
void |
invokeNext(javax.servlet.ServletContext sc,
DocumentInfo[] documentInfos)
Invoke the
ConfigProcess specified by
a call to setNext(ConfigProcessor) , if any. |
void |
process(javax.servlet.ServletContext sc,
DocumentInfo[] documentInfos)
Process the array of
Document s. |
void |
setNext(ConfigProcessor nextProcessor)
Set the next
ConfigProcessor to be invoked once
process(javax.servlet.ServletContext,com.sun.faces.config.DocumentInfo[])
has completed. |
void setNext(ConfigProcessor nextProcessor)
Set the next ConfigProcessor
to be invoked once
process(javax.servlet.ServletContext,com.sun.faces.config.DocumentInfo[])
has completed.
nextProcessor
- the next processor in the chain to be invokedvoid process(javax.servlet.ServletContext sc, DocumentInfo[] documentInfos) throws java.lang.Exception
Process the array of Document
s.
sc
- the ServletContext
for the application being configureddocumentInfos
- @throws Exception if an error occurs during processingjava.lang.Exception
void invokeNext(javax.servlet.ServletContext sc, DocumentInfo[] documentInfos) throws java.lang.Exception
Invoke the ConfigProcess
specified by
a call to setNext(ConfigProcessor)
, if any.
sc
- the ServletContext
for the application being configureddocumentInfos
- @throws Exception if an error occurs invoking the next processorjava.lang.Exception
Copyright © 2002-2010 Oracle America, Inc. All Rights Reserved.