com.github.sardine.model.Inherited Maven / Gradle / Ivy
package com.github.sardine.model;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"href"
})
@XmlRootElement(name = "inherited")
public class Inherited {
private String href;
public String getHref() {
return href;
}
public void setHref(String href) {
this.href = href;
}
}