Scene7PropertySetImpl.java 836 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.day.cq.dam.scene7.impl.model;

import com.day.cq.dam.scene7.api.model.Scene7PropertySet;
import java.util.Map;

public class Scene7PropertySetImpl
implements Scene7PropertySet {
    private String setHandle;
    private String typeHandle;
    private Map<String, String> properties;

    public Scene7PropertySetImpl(String setHandle, String typeHandle, Map<String, String> properties) {
        this.setHandle = setHandle;
        this.typeHandle = typeHandle;
        this.properties = properties;
    }

    @Override
    public String getSetHandle() {
        return this.setHandle;
    }

    @Override
    public String getTypeHandle() {
        return this.typeHandle;
    }

    @Override
    public Map<String, String> getProperties() {
        return this.properties;
    }
}