summaryrefslogtreecommitdiffstats
blob: dc105782a5c0ebc00bf30e23918ecc07f0b5471f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * Copyright (c) 2010-2015 Isode Limited, London, England.
 * All rights reserved.
 */
package com.isode.stroke.parser.payloadparsers;

import com.isode.stroke.parser.GenericPayloadParserFactory;

public class SecurityLabelParserFactory extends GenericPayloadParserFactory<SecurityLabelParser> {

    public SecurityLabelParserFactory() {
        super("securitylabel", "urn:xmpp:sec-label:0", SecurityLabelParser.class);
    }

}