summaryrefslogtreecommitdiffstats
blob: 4c474e357dffb8cdff43b91aa743856804a1ca8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * Copyright (c) 2010, 2011 Isode Limited, London, England.
 * All rights reserved.
 */
/*
 * Copyright (c) 2010, Remko Tronçon.
 * All rights reserved.
 */

package com.isode.stroke.parser.payloadparsers;

import com.isode.stroke.parser.GenericPayloadParserFactory;

class ResourceBindParserFactory extends GenericPayloadParserFactory<ResourceBindParser> {

    public ResourceBindParserFactory() {
        super("bind", "urn:ietf:params:xml:ns:xmpp-bind", ResourceBindParser.class);
    }

}