KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > quikj > application > web > talk > jspbeans > ContactCenterAuthenticatorInterface


1 /*
2  * TalkCustomerDbInterface.java
3  *
4  * Created on June 4, 2003, 11:57 AM
5  */

6
7 package com.quikj.application.web.talk.jspbeans;
8
9 /**
10  *
11  * @author amit
12  */

13 public interface ContactCenterAuthenticatorInterface
14 {
15     public void setParam (String JavaDoc name, String JavaDoc value);
16     public String JavaDoc init();
17     public CustomerInformationElement validate(String JavaDoc user, String JavaDoc password);
18 }
19
Popular Tags