Package org.sf.bee.mongodb.i18n

Examples of org.sf.bee.mongodb.i18n.BeeTranslationService.distinct()


            final DBObject fTranslations = new BasicDBObject();
            final Pattern pattern = Pattern.compile("^.*".concat(filterText).concat(".*$"), Pattern.CASE_INSENSITIVE);
            fTranslations.put(BeeTranslation.COLL, collection);
            fTranslations.put(BeeTranslation.LANG, lang);
            fTranslations.put(BeeTranslation.VALUE, pattern);
            return srvc.distinct(BeeTranslation.FIELD_ID, fTranslations);
        } catch (Exception ex) {
            this.getLogger().log(Level.SEVERE, ex.getMessage());
        }
        return new ArrayList<String>();
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.