/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package fr.itldev.koya.action.importXml.model;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
/**
*
* @author nico
*/
@XmlRootElement(name = "content")
@XmlAccessorType(XmlAccessType.NONE)
public class ContentXml {
@XmlElement(name = "dossier")
private String dossierReference;
@XmlElement(name = "path")
private String path;
@XmlElement(name = "name")
private String name;
@XmlElement(name = "filename")
private String filename;
public String getDossierReference() {
return dossierReference;
}
public void setDossierReference(String dossierReference) {
this.dossierReference = dossierReference;
}
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getFilename() {
return filename;
}
public void setFilename(String filename) {
this.filename = filename;
}
}