* @param selector the message selector. May be <code>null</code>
* @throws InvalidSelectorException if the selector is not well formed
*/
protected void setSelector(String selector)
throws InvalidSelectorException {
_selector = (selector != null) ? new Selector(selector) : null;
}