Package org.apache.synapse.aspects

Examples of org.apache.synapse.aspects.ComponentType


        return ((MediationStatisticsStore) getConfigContext().
                getProperty(StatisticsConstants.STAT_PROPERTY)).getResourceNames(ComponentType.ENDPOINT);
    }

    public InOutStatisticsRecord getCategoryStatistics(int category) {
        ComponentType type = StatisticsUtil.getComponentType(category);
        return getCategoryStatistics(type);
    }
View Full Code Here


     * @param updateRecord - update record
     */
    private void exposeDataOnMBeans(StatisticsRecord updateRecord) {

        // We only consider the In flow stats..
        ComponentType type = updateRecord.getType();
        if (type == ComponentType.SEQUENCE) {
            SequenceStatView view;
            if (!sequenceViewMap.containsKey(updateRecord.getResourceId())) {
                view = new SequenceStatView();
                MBeanRegistrar.getInstance().registerMBean(view,
View Full Code Here

TOP

Related Classes of org.apache.synapse.aspects.ComponentType

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.