interface Observer { string getDetails(); }; interface User { string setDetails(); }; object Server { supports Observer, User; };