package mentata.ldaphttp.forum; import mentata.ldaphttp.LDAPHttpException; /** * A directory entry that represents a comment in reference to an O'Reilly weblog post. */ public class orarep extends rep { /** * Instantiates an empty template for an O'Reilly weblog reply. */ public orarep() throws LDAPHttpException { // set default values for this object setCategory("ora"); setLabel("O'Reilly weblog reply"); setFeed("http://www.oreillynet.com/meerkat/index.php?c=5209&_fl=rss10&t=1ALL"); } /** * Constructs and returns the substring to match in an RSS item. * * @return the item substring */ public final String getItemSubstring() throws LDAPHttpException { return "/wlg/" + super.getItemSubstring(); } }