package ClientApp;
public interface Result
    extends org.omg.CORBA.Object {
    String name() throws org.omg.CORBA.SystemException;
    void name(String arg) throws org.omg.CORBA.SystemException;
    String age() throws org.omg.CORBA.SystemException;
    void age(String arg) throws org.omg.CORBA.SystemException;
    String occ() throws org.omg.CORBA.SystemException;
    void occ(String arg) throws org.omg.CORBA.SystemException;
}