com.windowsazure.samples.table.TableOperationResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jpa4azure Show documentation
Show all versions of jpa4azure Show documentation
jpa4azure, implements a subset of the JPA specification using Azure Storage for pesisting beans. see http://jpa4azure.codeplex.com for more information.
The newest version!
package com.windowsazure.samples.table;
import java.util.Date;
import com.windowsazure.samples.EntityBase;
public class TableOperationResponse extends EntityBase {
public TableOperationResponse() {
this(null, null, null, null);
}
public TableOperationResponse(String etag, String requestId, String version, Date date) {
this.etag = etag;
this.requestId = requestId;
this.version = version;
this.date = date;
}
public Date getDate() {
return date;
}
public String getEtag() {
return etag;
}
public String getRequestId() {
return requestId;
}
public String getVersion() {
return version;
}
private Date date;
private String etag;
private String requestId;
private String version;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy