com.icegreen.greenmail.imap.commands.SortTerm Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of greenmail Show documentation
Show all versions of greenmail Show documentation
GreenMail - Email Test Servers
package com.icegreen.greenmail.imap.commands;
import jakarta.mail.search.SearchTerm;
import java.util.ArrayList;
import java.util.List;
/**
* Created on 10/03/2016.
*
* @author Reda.Housni-Alaoui
*/
class SortTerm {
private final List sortCriteria = new ArrayList<>();
private String charset;
private SearchTerm searchTerm;
public List getSortCriteria() {
return sortCriteria;
}
public String getCharset() {
return charset;
}
public void setCharset(String charset) {
this.charset = charset;
}
public SearchTerm getSearchTerm() {
return searchTerm;
}
public void setSearchTerm(SearchTerm searchTerm) {
this.searchTerm = searchTerm;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy