01: package com.sun.portal.comm.url;
02:
03: public interface ABURL {
04:
05: /**
06: * Lets invoking classes know if contact urls are available
07: * in this URLBuilder.
08: *
09: * @return boolean Are contact URLs available
10: */
11: public boolean allowsContactURL();
12:
13: /**
14: * Return URL string for specific contact to be opened in ab client.
15: *
16: * @param Object contact
17: * @return String View URL string
18: */
19: public String getContactURL(Object contact);
20:
21: }
|