Examples of UnconnectedProtocolWorker


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

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

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
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.