summaryrefslogtreecommitdiffstats
blob: aaa05c65cc9b1540efe786ec03a4eb9a9deaa628 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * 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;

public class RosterParserFactory extends GenericPayloadParserFactory<RosterParser> {

    public RosterParserFactory() {
        super("query", "jabber:iq:roster", RosterParser.class);
    }

}