KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > bridge > jsp > taglib > CloudProvider


1 /*
2
3 This software is OSI Certified Open Source Software.
4 OSI Certified is a certification mark of the Open Source Initiative.
5
6 The license (Mozilla version 1.0) can be read at the MMBase site.
7 See http://www.MMBase.org/license
8
9 */

10 package org.mmbase.bridge.jsp.taglib;
11 import javax.servlet.jsp.JspTagException JavaDoc;
12
13 import org.mmbase.bridge.Cloud;
14
15 /**
16  *
17  * Interface designed to make it possible for child tags
18  * to access a cloud (or transaction) defined in a tag
19  *
20  * @author Michiel Meeuwissen
21  * @version $Id: CloudProvider.java,v 1.8 2003/06/06 10:03:06 pierre Exp $
22  */

23
24 public interface CloudProvider extends TagIdentifier {
25     /**
26      * @return the cloud contained in the tag
27      **/

28     public Cloud getCloudVar() throws JspTagException JavaDoc;
29
30 }
31
Popular Tags