All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.zebrajaeger.opencms.resourceplugin.template.OcmsFolderTemplate Maven / Gradle / Ivy

package de.zebrajaeger.opencms.resourceplugin.template;

import java.util.UUID;

/**
 * Created by lars on 11.02.2017.
 */
public class OcmsFolderTemplate extends FileTemplate {

    private UUID uuid = UUID.randomUUID();

    public OcmsFolderTemplate() {
        super("templates/ocmsfolder.xml");
    }

    public UUID getUuid() {
        return uuid;
    }

    public void setUuid(UUID uuid) {
        this.uuid = uuid;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy