Examples of global()


Examples of org.conventionsframework.qualifier.BeanState.global()

            return;
        } else {//only a state annotation is present
            BeanState beanState = AnnotationUtils.findStateAnnotation(getClass());
            if (beanState != null) {
                if (beanState.beanState().equals(this.getBeanState().getStateName())) {
                    statePushEvent.fire(new StatePushEvent(new StateItem(beanState.outcome(), getEntity(), getBeanState(), beanState.value(), beanState.title(), this.getClass(), beanState.ajax(), beanState.callback(), beanState.update(),beanState.global(),beanState.resetValues(),beanState.immediate(),beanState.oncomplete(),beanState.addEntityIdParam())));
                }
            }
        }
    }
View Full Code Here

Examples of org.conventionsframework.qualifier.BeanState.global()

            } else {//only a state annotation is present
                BeanState state = AnnotationUtils.findStateAnnotation(getClass());
                if (states != null) {
                    if (state.beanState().equals(this.getBeanState().getStateName())) {
                        statePushEvent.fire(new StatePushEvent(new StateItem(state.outcome(), getEntity(), getBeanState(), state.value(), state.title(), this.getClass(), state.ajax(), state.callback(), state.update(),state.global(),state.resetValues(),state.immediate(),state.oncomplete(),state.addEntityIdParam())));
                    }
                }
            }
        }
    }
View Full Code Here

Examples of org.conventionsframework.util.StateBuilder.global()

        if(Boolean.valueOf(dinamic)){
            StateBuilder builder = stateBuilder.type(bean.getClass()).callback(callback).entity(entity).state(state).value(value)
                    .oncomplete(oncomplete).update(update).outcome(outcome).title(title);
            if (Boolean.valueOf(global)) {
                builder.global();
            }
            if (Boolean.valueOf(ajax)) {
                builder.ajax();
            }
            if (Boolean.valueOf(immediate)) {
View Full Code Here

Examples of org.eclipse.sapphire.Collation.global()

            {
                final Collation collation = property.getAnnotation( Collation.class );
               
                if( collation != null )
                {
                    return collation.global() ||
                           collation.ignoreCaseDifferences().equalsIgnoreCase( "true" ) ||
                           collation.ignoreCaseDifferences().equalsIgnoreCase( "false" );
                }
            }
           
View Full Code Here

Examples of org.eclipse.sapphire.Collation.global()

            {
                final Collation collation = property.getAnnotation( Collation.class );
               
                if( collation != null )
                {
                    return ! collation.global() &&
                           ! collation.ignoreCaseDifferences().equalsIgnoreCase( "true" ) &&
                           ! collation.ignoreCaseDifferences().equalsIgnoreCase( "false" );
                }
            }
           
View Full Code Here

Examples of org.elasticsearch.search.facet.statistical.StatisticalFacetBuilder.global()

        } else {
            srb = filteredSearchRequest(query, filter, IndexHelper.determineAffectedIndices(indexRangeService, deflector, range));
        }

        StatisticalFacetBuilder stats = new StatisticalFacetBuilder(STATS_FACET_NAME);
        stats.global(false);

        stats.facetFilter(standardFilters(range, filter));

        stats.field(field);
View Full Code Here

Examples of org.elasticsearch.search.facet.terms.TermsFacetBuilder.global()

        } else {
            srb = filteredSearchRequest(query, filter, IndexHelper.determineAffectedIndices(indexRangeService, deflector, range));
        }

        TermsFacetBuilder terms = new TermsFacetBuilder(TERMS_FACET_NAME);
        terms.global(false);
        terms.field(field);
        terms.size(size);

        terms.facetFilter(standardFilters(range, filter));
View Full Code Here

Examples of org.elasticsearch.search.facet.termsstats.TermsStatsFacetBuilder.global()

        } else {
            srb = filteredSearchRequest(query, filter, IndexHelper.determineAffectedIndices(indexRangeService, deflector, range));
        }

        TermsStatsFacetBuilder stats = new TermsStatsFacetBuilder(TERMS_STATS_FACET_NAME);
        stats.global(false);
        stats.keyField(keyField);
        stats.valueField(valueField);
        stats.order(TermsStatsFacet.ComparatorType.fromString(order.toString().toLowerCase()));
        stats.size(size);
View Full Code Here

Examples of org.geoserver.config.util.LegacyServicesReader.global()

        return reader;
    }

    public void imprt(File dir) throws Exception {
        LegacyServicesReader reader = reader(dir);
        Map<String, Object> global = reader.global();

        configFileName = (String) global.get("log4jConfigFile");
        logFile = (String) global.get("logLocation");

        suppressStdOutLogging = Converters.convert(global.get("suppressStdOutLogging"), Boolean.class);
View Full Code Here

Examples of org.geoserver.config.util.LegacyServicesReader.global()

        return reader;
    }

    public void imprt(File dir) throws Exception {
        LegacyServicesReader reader = reader(dir);
        Map<String, Object> global = reader.global();

        configFileName = (String) global.get("log4jConfigFile");
        logFile = (String) global.get("logLocation");

        suppressStdOutLogging = Converters.convert(global.get("suppressStdOutLogging"), Boolean.class);
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.