javax.mail.search.NotTerm Java Examples

The following examples show how to use javax.mail.search.NotTerm. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: MailConnection.java    From hop with Apache License 2.0 5 votes vote down vote up
/**
 * Set filter on subject.
 *
 * @param subject messages will be filtered on subject
 * @param notTerm negate condition
 */
public void setSubjectTerm( String subject, boolean notTerm ) {
  if ( !Utils.isEmpty( subject ) ) {
    if ( notTerm ) {
      addSearchTerm( new NotTerm( new SubjectTerm( subject ) ) );
    } else {
      addSearchTerm( new SubjectTerm( subject ) );
    }
  }
}
 
Example #2
Source File: MailConnection.java    From hop with Apache License 2.0 5 votes vote down vote up
/**
 * Search all messages with body containing the word bodyfilter
 *
 * @param bodyfilter
 * @param notTerm    negate condition
 */
public void setBodyTerm( String bodyfilter, boolean notTerm ) {
  if ( !Utils.isEmpty( bodyfilter ) ) {
    if ( notTerm ) {
      addSearchTerm( new NotTerm( new BodyTerm( bodyfilter ) ) );
    } else {
      addSearchTerm( new BodyTerm( bodyfilter ) );
    }
  }
}
 
Example #3
Source File: MailConnection.java    From hop with Apache License 2.0 5 votes vote down vote up
/**
 * Set filter on message sender.
 *
 * @param sender  messages will be filtered on sender
 * @param notTerm negate condition
 */
public void setSenderTerm( String sender, boolean notTerm ) {
  if ( !Utils.isEmpty( sender ) ) {
    if ( notTerm ) {
      addSearchTerm( new NotTerm( new FromStringTerm( sender ) ) );
    } else {
      addSearchTerm( new FromStringTerm( sender ) );
    }
  }
}
 
Example #4
Source File: MailConnection.java    From pentaho-kettle with Apache License 2.0 5 votes vote down vote up
/**
 * Set filter on subject.
 *
 * @param subject
 *          messages will be filtered on subject
 * @param notTerm
 *          negate condition
 */
public void setSubjectTerm( String subject, boolean notTerm ) {
  if ( !Utils.isEmpty( subject ) ) {
    if ( notTerm ) {
      addSearchTerm( new NotTerm( new SubjectTerm( subject ) ) );
    } else {
      addSearchTerm( new SubjectTerm( subject ) );
    }
  }
}
 
Example #5
Source File: MailConnection.java    From pentaho-kettle with Apache License 2.0 5 votes vote down vote up
/**
 * Search all messages with body containing the word bodyfilter
 *
 * @param bodyfilter
 * @param notTerm
 *          negate condition
 */
public void setBodyTerm( String bodyfilter, boolean notTerm ) {
  if ( !Utils.isEmpty( bodyfilter ) ) {
    if ( notTerm ) {
      addSearchTerm( new NotTerm( new BodyTerm( bodyfilter ) ) );
    } else {
      addSearchTerm( new BodyTerm( bodyfilter ) );
    }
  }
}
 
Example #6
Source File: MailConnection.java    From pentaho-kettle with Apache License 2.0 5 votes vote down vote up
/**
 * Set filter on message sender.
 *
 * @param sender
 *          messages will be filtered on sender
 * @param notTerm
 *          negate condition
 */
public void setSenderTerm( String sender, boolean notTerm ) {
  if ( !Utils.isEmpty( sender ) ) {
    if ( notTerm ) {
      addSearchTerm( new NotTerm( new FromStringTerm( sender ) ) );
    } else {
      addSearchTerm( new FromStringTerm( sender ) );
    }
  }
}