MetaDataBlockImpl.java 635 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.day.cq.mcm.campaign.profile.impl;

import com.day.cq.mcm.campaign.profile.MetaDataBlock;

@Deprecated
public final class MetaDataBlockImpl
implements MetaDataBlock {
    private final String id;
    private final String label;

    protected MetaDataBlockImpl(String id, String label) {
        this.id = id;
        this.label = label;
    }

    @Override
    public String getId() {
        return this.id;
    }

    @Override
    public String getLabel() {
        return this.label;
    }

    public String toString() {
        return this.id + " (" + this.label + ")";
    }
}