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

com.github.henkexbg.gallery.controller.model.GalleryDirectoryHolder Maven / Gradle / Ivy

Go to download

There is a newer version: 1.1.1
Show newest version
package com.github.henkexbg.gallery.controller.model;

/**
 * POJO defining one gallery directory. This directory will be sent back to the requesting
 * entity (of course with possible transformation to for instance JSON).
 *
 * @author Henrik Bjerne
 *
 */
public class GalleryDirectoryHolder {

    private String name;

    private String path;

    private GalleryFileHolder image;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getPath() {
        return path;
    }

    public void setPath(String path) {
        this.path = path;
    }

    public GalleryFileHolder getImage() {
        return image;
    }

    public void setImage(GalleryFileHolder image) {
        this.image = image;
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy