
de.ubleipzig.image.metadata.templates.ImageMetadataDirectory Maven / Gradle / Ivy
The newest version!
/*
* Image Metadata
* Copyright (C) 2017 Leipzig University Library
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see
*/
package de.ubleipzig.image.metadata.templates;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
/**
* ImageMetadataDirectory.
*
* @author christopher-johnson
*/
public class ImageMetadataDirectory {
@JsonProperty
private String directory;
@JsonProperty
private List tags;
/**
* setDirectory.
*
* @param directory String
*/
public void setDirectory(final String directory) {
this.directory = directory;
}
/**
* getTags.
*
* @return List
*/
@JsonIgnore
public List getTags() {
return this.tags;
}
/**
* setTags.
*
* @param tags List
*/
public void setTags(final List tags) {
this.tags = tags;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy