1 /*
2 * Created on Oct 12, 2003
3 * Copyright (c) 2003. All rights reserved.
4 */
5 package portaview.model;
6
7 /***
8 * Interface for data types that can be translated to XmlRpcType.
9 * @author <a href="mailto:wwlee1@uiuc.edu">William Lee</a>
10 * @version $Id: XmlRpcType.java,v 1.1 2003/10/13 14:55:47 wlee Exp $
11 */
12 public interface XmlRpcType
13 {
14 /***
15 * Returns an object that can be used in the XmlRpc calls.
16 * @return object of XmlRpc type.
17 */
18 public Object toXmlRpcType();
19 }
This page was automatically generated by Maven