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

com.github.henkexbg.gallery.bean.GalleryDirectory Maven / Gradle / Ivy

Go to download

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

/**
 * Simple POJO describing a gallery directory. This links together a public path with
 * the actual directory on the file system.
 *
 * @author Henrik Bjerne
 *
 */
public class GalleryDirectory {

    private String name;

    private GalleryFile image;

    private String publicPath;

    public String getName() {
        return name;
    }

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

    public GalleryFile getImage() {
        return image;
    }

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

    public String getPublicPath() {
        return publicPath;
    }

    public void setPublicPath(String publicPath) {
        this.publicPath = publicPath;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy