summaryrefslogtreecommitdiffstats
blob: b957a31d5148a037c23a172b1f9542e9ac2701fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*  Copyright (c) 2016, Isode Limited, London, England.
 *  All rights reserved.
 *
 *  Acquisition and use of this software and related materials for any
 *  purpose requires a written license agreement from Isode Limited,
 *  or a written license from an organisation licensed by Isode Limited
 *  to grant such a license.
 *
 */
package com.isode.stroke.parser.payloadparsers;

import com.isode.stroke.elements.BlockListPayload;

/**
 * {@link BlockParser} for pay loads of type {@link BlockListPayload}
 */
public class BlockBlockListPayloadParser extends BlockParser<BlockListPayload> {

    /**
     * Constructor
     */
    public BlockBlockListPayloadParser() {
        super(new BlockListPayload());
    }

}