module ClientApp
{
    interface ClientQuery
    {
        void search(in  string a);
	string getName();
        string getAge();
        string getOcc();
        void open();
        void close();
    };

    interface Result
    {
        attribute string name;
        attribute string age;
        attribute string occ;
    };
};