KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > module > idInterface


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.module;
11
12 /**
13  * @javadoc
14  * @application SCAN
15  * @rename IdInterface
16  * @deprecated no implementation of this interface exists, and the only class that references the interface
17  * (scanparser) never instantiates it.
18  * @author vpro
19  * @version $Id: idInterface.java,v 1.1 2005/07/14 20:22:06 nklasens Exp $
20  */

21 public interface idInterface {
22     public String JavaDoc getState(String JavaDoc userName, String JavaDoc name);
23     public String JavaDoc getValue(String JavaDoc userName, String JavaDoc name);
24     public String JavaDoc setValue(String JavaDoc userName, String JavaDoc name, String JavaDoc value);
25     public String JavaDoc setState(String JavaDoc userName, String JavaDoc name, String JavaDoc value);
26 }
27
Popular Tags