com.windowsazure.samples.queue.AzureQueue 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.queue;
import com.windowsazure.samples.MetadataCollection;
public final class AzureQueue {
public AzureQueue(String queueName, String url, MetadataCollection metadata) {
this.queueName = queueName;
this.url = url;
this.metadata = metadata;
}
public MetadataCollection getMetadata() {
return metadata;
}
public String getQueueName() {
return queueName;
}
public String getUrl() {
return url;
}
private MetadataCollection metadata;
private String queueName;
private String url;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy