KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jahia > services > fetchers > JahiaFetcherService


1 //
2
// ____.
3
// __/\ ______| |__/\. _______
4
// __ .____| | \ | +----+ \
5
// _______| /--| | | - \ _ | : - \_________
6
// \\______: :---| : : | : | \________>
7
// |__\---\_____________:______: :____|____:_____\
8
// /_____|
9
//
10
// . . . i n j a h i a w e t r u s t . . .
11
//
12

13 //
14
// JahiaFetcherServices
15
// EV 11.01.2001
16
//
17
//
18
// fetchServlet( jParams, servletPath )
19
//
20

21 package org.jahia.services.fetchers;
22
23 import org.jahia.exceptions.JahiaException;
24 import org.jahia.params.ParamBean;
25 import org.jahia.services.JahiaService;
26
27 /**
28   * Class JahiaFetcherService
29   *
30   */

31 public abstract class JahiaFetcherService extends JahiaService {
32
33
34
35     /***
36         * fetches a servlet or JSP output
37         *
38         * @param jParams a ParamBean object (with request and response)
39         * @param servletPath the servlet / jsp context path
40         * @return the servlet / jsp output
41         *
42         */

43     public abstract String JavaDoc fetchServlet( ParamBean jParams, String JavaDoc servletPath )
44         throws JahiaException;
45
46
47 } // end JahiaFetcherService
48
Popular Tags