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

package com.isode.stroke.parser.payloadparsers;

import com.isode.stroke.parser.GenericPayloadParserFactory;

public class SoftwareVersionParserFactory extends GenericPayloadParserFactory<SoftwareVersionParser> {

    public SoftwareVersionParserFactory() {
        super("query", "jabber:iq:version", SoftwareVersionParser.class);
    }

}