KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > coldcore > coloradoftp > factory > InternalFactory


1 package com.coldcore.coloradoftp.factory;
2
3 /**
4  * Internal factory of an object factory.
5  * Object factory delegates methods to find objects to an internal factory. This class is
6  * responsible for all the work.
7  *
8  *
9  * ColoradoFTP - The Open Source FTP Server (http://cftp.coldcore.com)
10  */

11 public interface InternalFactory {
12
13   /** Get bean by name
14    * @param name Bean name
15    * @return Bean object or NULL
16    */

17   public Object JavaDoc getBean(String JavaDoc name);
18 }
19
Popular Tags