
org.swordapp.client.ServerResource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sword2-client Show documentation
Show all versions of sword2-client Show documentation
Client library for interacting with servers offering SWORDv2 endpoints.
The newest version!
package org.swordapp.client;
import java.net.URI;
import java.util.Date;
import java.util.List;
public class ServerResource
{
private URI uri;
private List packaging;
private String depositedBy;
private Date depositedOn;
private String depositedOnBehalfOf;
public URI getUri()
{
return uri;
}
public void setUri(URI uri)
{
this.uri = uri;
}
public List getPackaging()
{
return packaging;
}
public void setPackaging(List packaging)
{
this.packaging = packaging;
}
public String getDepositedBy()
{
return depositedBy;
}
public void setDepositedBy(String depositedBy)
{
this.depositedBy = depositedBy;
}
public Date getDepositedOn()
{
return depositedOn;
}
public void setDepositedOn(Date depositedOn)
{
this.depositedOn = depositedOn;
}
public String getDepositedOnBehalfOf()
{
return depositedOnBehalfOf;
}
public void setDepositedOnBehalfOf(String depositedOnBehalfOf)
{
this.depositedOnBehalfOf = depositedOnBehalfOf;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy