Package org.opencustomer.framework.db.util.engine.configuration

Examples of org.opencustomer.framework.db.util.engine.configuration.TextSearch


       
        for(Column column : columns) {
            Property property = engine.getConfiguration().getProperties().get(column.getPosition());
           
            if(column.getSearch() instanceof TextSearch) {
                TextSearch search = (TextSearch)column.getSearch();
                if(search.getValue() != null) {
                    String critValue = search.getPattern().replace('*', '%').replaceAll("\\{search\\}", search.getValue());
                   
                    if(log.isDebugEnabled())
                        log.debug("add text criterion for "+property.getName()+": "+critValue);
                   
                    if(property.getAltName() == null) {
                        dynamicRestrictions.add(new Restriction("lower("+property.getName()+") like lower({0})", property.isGroup(), critValue));
                    } else {
                        dynamicRestrictions.add(new Restriction("(lower("+property.getName()+") like lower({0}) or ("+property.getName()+" is null and lower("+property.getAltName()+") like lower({0})))", property.isGroup(), critValue));
                    }
                }
            } else if(column.getSearch() instanceof EnumSearch) {
                EnumSearch search = (EnumSearch)column.getSearch();

                if(search.getValue() != null) {
                    dynamicRestrictions.add(new Restriction(property.getName()+" = {0}", property.isGroup(), search.getValue()));
                }
            } else if(column.getSearch() instanceof TextSelectSearch) {
                TextSelectSearch search = (TextSelectSearch)column.getSearch();
               
                if(search.isHql()) {
                    TextSelectSearch.Bean bean = search.getBeans().get(search.getValue());
                    if(bean.getHql() != null)
                        dynamicRestrictions.add(new Restriction(bean.getHql(), property.isGroup()));
                } else {
                    if(search.getValue() != null) {
                        dynamicRestrictions.add(new Restriction(property.getName()+" = {0}", property.isGroup(), search.getValue()));
                    }
                }
            } else if(column.getSearch() instanceof ListSelectSearch) {
                ListSelectSearch search = (ListSelectSearch)column.getSearch();
               
                if(search.getValue() != null)
                    dynamicRestrictions.add(new Restriction(search.getSearchProperty()+" = {0}", property.isGroup(), search.getValue()));
            } else if(column.getSearch() instanceof DateSearch) {
                DateSearch search = (DateSearch)column.getSearch();
               
                Date start = search.getValueStart();
                Date end   = search.getValueEnd();
                if(end != null) {
                    Calendar cal = GregorianCalendar.getInstance();
                    cal.setTime(end);
                    cal.add(Calendar.DAY_OF_MONTH, 1);
                    cal.add(Calendar.SECOND, -1);
View Full Code Here


                            builder.append(resources.getMessage(locale, messageKey));
                            builder.append("</option>");
                        }
                        builder.append("</select>");
                    } else if(column.getSearch() instanceof TextSearch) {
                        TextSearch search = (TextSearch)column.getSearch();
                       
                        builder.append("<input");
                        builder.append(" type=\"text\"");
                        builder.append(" name=\"search_").append(column.getPosition()).append("\"");
                        builder.append(" id=\"search_").append(column.getPosition()).append("\"");
                        builder.append(" value=\"").append(search.getValue() == null ? "" : search.getValue()).append("\"");
                        builder.append("/>");
                    } else if(column.getSearch() instanceof DateSearch) {
                        DateSearch search = (DateSearch)column.getSearch();
                       
                        SimpleDateFormat sdf = new SimpleDateFormat(resources.getMessage(locale, search.getFormatKey()));
                       
                        builder.append("<input");
                        builder.append(" type=\"text\"");
                        if(settings.getProperty(HALF_INPUT_CLASS) != null) {
                            builder.append(" class=\"").append(settings.getProperty(HALF_INPUT_CLASS)).append("\"");
                        }
                        builder.append(" name=\"search_").append(column.getPosition()).append("_start\"");
                        builder.append(" id=\"search_").append(column.getPosition()).append("_start\"");
                        builder.append(" value=\"").append(search.getValueStart() == null ? "" : sdf.format(search.getValueStart())).append("\"");
                        builder.append("/>");
                       
                        builder.append("<input");
                        builder.append(" type=\"text\"");
                        if(settings.getProperty(HALF_INPUT_CLASS) != null) {
                            builder.append(" class=\"").append(settings.getProperty(HALF_INPUT_CLASS)).append("\"");
                        }
                        builder.append(" name=\"search_").append(column.getPosition()).append("_end\"");
                        builder.append(" id=\"search_").append(column.getPosition()).append("_end\"");
                        builder.append(" value=\"").append(search.getValueEnd() == null ? "" : sdf.format(search.getValueEnd())).append("\"");
                        builder.append("/>");
                    }
                    builder.append("</td>");
                    builder.append("</tr>");
                    builder.append("</table>");
View Full Code Here

                            search = enumSearch;
                        } catch(ClassNotFoundException e) {
                            throw new TableEngineException("could get attribute 'class'", e);
                        }
                    } else if("text".equals(attributeNode.getNodeValue())) {
                        search = new TextSearch(attributes.getNamedItem("pattern").getNodeValue());
                    } else if("date".equals(attributeNode.getNodeValue())) {
                        search = new DateSearch(attributes.getNamedItem("formatKey").getNodeValue());
                    } else if("text.select".equals(attributeNode.getNodeValue())) {
                        TextSelectSearch textSelectSearch = new TextSelectSearch();
                        if(attributes.getNamedItem("hql") != null)
View Full Code Here

TOP

Related Classes of org.opencustomer.framework.db.util.engine.configuration.TextSearch

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.