Package org.jvnet.glassfish.comms.sipagent.model

Examples of org.jvnet.glassfish.comms.sipagent.model.SipResponse


        throw new RuntimeException("NYI");
    }
   
    public SipResponse createResponse(String aBunchOfText)
        throws BackendException {
        SipResponse result;
        try {
            result = (SipResponse)(this.doParse(aBunchOfText));
        }
        catch (Throwable t){
            throw new BackendException(
View Full Code Here


        return resp;
    }
   
    public ResponseBean prepareResponse(String aResponseText) {
        theirLogger.finest("----- prepareResponse() ----->");
        SipResponse resp = null;
        try {
            resp = itsController.createResponse(aResponseText);   
        }
        catch (BackendException e){
            theirLogger.log(Level.FINER,
View Full Code Here

TOP

Related Classes of org.jvnet.glassfish.comms.sipagent.model.SipResponse

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.