/*
 * Created on 31.05.2005
 *
 */
package com.iez.spserver.ws;

import java.rmi.RemoteException;


/**
 * @author Falk
 *
 * 
 */
public interface SpServerWS extends java.rmi.Remote
{
    public TestBean getTestBean() throws RemoteException;
    public TestBean[] getTestBeans() throws RemoteException;
    public TestBean2 getTestBean2() throws RemoteException;
    public TestBean2[] getTestBeans2() throws RemoteException;
    public int getInt() throws RemoteException;
    public int [] getInts() throws RemoteException;
    public String getString() throws RemoteException;
    public String[] getStrings() throws RemoteException;
//    public IEZProject getProject(int sid, int projectID) throws Exception;
//    public IEZProject[] getProjects(int sid) throws Exception;
}
