Package org.sleuthkit.autopsy.filesearch.FileSearchFilter

Examples of org.sleuthkit.autopsy.filesearch.FileSearchFilter.FilterValidationException


    @Override
    public String getPredicate() throws FilterValidationException {
        String keyword = this.getComponent().getSearchTextField().getText();

        if (keyword.isEmpty()) {
            throw new FilterValidationException(EMPTY_NAME_MESSAGE);
        }

        keyword.replace("'", "''"); // escape quotes in string       
        //TODO: escaping might not be enough, would ideally be part of a prepared statement
View Full Code Here


                    String msg = NbBundle.getMessage(this.getClass(), "FileSearchPanel.search.results.msg", totalMatches);
                    String details = NbBundle.getMessage(this.getClass(), "FileSearchPanel.search.results.details");
                    MessageNotifyUtil.Notify.info(msg, details);
                }
            } else {
                throw new FilterValidationException(
                        NbBundle.getMessage(this.getClass(), "FileSearchPanel.search.exception.noFilterSelected.msg"));
            }
        } catch (FilterValidationException ex) {
            NotifyDescriptor d = new NotifyDescriptor.Message(
                    NbBundle.getMessage(this.getClass(), "FileSearchPanel.search.validationErr.msg", ex.getMessage()));
View Full Code Here

TOP

Related Classes of org.sleuthkit.autopsy.filesearch.FileSearchFilter.FilterValidationException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.