nl.vpro.openarchives.oai.Note Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gtaa-domain Show documentation
Show all versions of gtaa-domain Show documentation
Contains java bindings for the objects served out by Openskos/GTAA
/*
* Copyright (C) 2015 Licensed under the Apache License, Version 2.0
* VPRO The Netherlands
*/
package nl.vpro.openarchives.oai;
import jakarta.xml.bind.annotation.*;
import lombok.Data;
import javax.xml.XMLConstants;
/**
* @author Michiel Meeuwissen
* @since 5.3
*/
@XmlAccessorType(XmlAccessType.NONE)
@Data
public class Note {
public Note() {
}
public Note(String value) {
this.value = value;
}
@XmlAttribute(name = "lang", namespace = XMLConstants.XML_NS_URI, required = true)
private String lang = "nl";
@XmlValue
private String value;
}