Package com.sun.enterprise.admin.monitor.callflow

Examples of com.sun.enterprise.admin.monitor.callflow.Agent


    public void setCallerIPFilter(String filter) {
        Agent callflowAgent = Switch.getSwitch().getCallFlowAgent();
        callflowAgent.setCallerIPFilter(filter);       
    }
    public String getCallerPrincipalFilter() {
        Agent callflowAgent = Switch.getSwitch().getCallFlowAgent();
        return callflowAgent.getCallerPrincipalFilter();
    }
View Full Code Here


        Agent callflowAgent = Switch.getSwitch().getCallFlowAgent();
        return callflowAgent.getCallerPrincipalFilter();
    }
   
    public void setCallerPrincipalFilter(String filter) {
        Agent callflowAgent = Switch.getSwitch().getCallFlowAgent();
        callflowAgent.setCallerPrincipalFilter(filter);
    }
View Full Code Here

    private void initCallFlow() {
        try {
            final Class cl = Class.forName(
                    "com.sun.enterprise.admin.monitor.callflow.AgentImpl");
            final Method method = cl.getMethod("getInstance", null);
            final Agent agent = (Agent) method.invoke(null, null);
            Switch.getSwitch().setCallFlowAgent(agent);
        } catch (Throwable t) {
            sLogger.log(Level.SEVERE, "core.callflow_agent_init_failed", t);
            Switch.getSwitch().setCallFlowAgent(new AgentAdapter());
        }
View Full Code Here

TOP

Related Classes of com.sun.enterprise.admin.monitor.callflow.Agent

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.