Package org.apache.vysper.xmpp.protocol.worker

Examples of org.apache.vysper.xmpp.protocol.worker.UnconnectedProtocolWorker


    private final ResponseWriter responseWriter = new ResponseWriter();

    public ProtocolWorker() {

        stateWorker.put(SessionState.UNCONNECTED, new UnconnectedProtocolWorker());
        stateWorker.put(SessionState.INITIATED, new InitiatedProtocolWorker());
        stateWorker.put(SessionState.STARTED, new StartedProtocolWorker());
        stateWorker.put(SessionState.ENCRYPTION_STARTED, new EncryptionStartedProtocolWorker());
        stateWorker.put(SessionState.ENCRYPTED, new EncryptedProtocolWorker());
        stateWorker.put(SessionState.AUTHENTICATED, new AuthenticatedProtocolWorker());
View Full Code Here


    private final ResponseWriter responseWriter = new ResponseWriter();

    public ProtocolWorker() {

        stateWorker.put(SessionState.UNCONNECTED, new UnconnectedProtocolWorker());
        stateWorker.put(SessionState.INITIATED, new InitiatedProtocolWorker());
        stateWorker.put(SessionState.STARTED, new StartedProtocolWorker());
        stateWorker.put(SessionState.ENCRYPTION_STARTED, new EncryptionStartedProtocolWorker());
        stateWorker.put(SessionState.ENCRYPTED, new EncryptedProtocolWorker());
        stateWorker.put(SessionState.AUTHENTICATED, new AuthenticatedProtocolWorker());
View Full Code Here

    private final ResponseWriter responseWriter = new ResponseWriter();

    public ProtocolWorker() {

        stateWorker.put(SessionState.UNCONNECTED, new UnconnectedProtocolWorker());
        stateWorker.put(SessionState.INITIATED, new InitiatedProtocolWorker());
        stateWorker.put(SessionState.STARTED, new StartedProtocolWorker());
        stateWorker.put(SessionState.ENCRYPTION_STARTED, new EncryptionStartedProtocolWorker());
        stateWorker.put(SessionState.ENCRYPTED, new EncryptedProtocolWorker());
        stateWorker.put(SessionState.AUTHENTICATED, new AuthenticatedProtocolWorker());
View Full Code Here

TOP

Related Classes of org.apache.vysper.xmpp.protocol.worker.UnconnectedProtocolWorker

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.