diff --git a/microsoft-azure-storage/src/com/microsoft/azure/storage/AccessCondition.java b/microsoft-azure-storage/src/com/microsoft/azure/storage/AccessCondition.java index bc0ffae4ea82c..18ff09b80393e 100644 --- a/microsoft-azure-storage/src/com/microsoft/azure/storage/AccessCondition.java +++ b/microsoft-azure-storage/src/com/microsoft/azure/storage/AccessCondition.java @@ -346,9 +346,6 @@ public void applySourceConditionToRequest(final HttpURLConnection request) { * @param request * A java.net.HttpURLConnection object that represents the request to which the condition is * being applied. - * - * @throws StorageException - * If there is an error parsing the date value of the access condition. */ public void applyAppendConditionToRequest(final HttpURLConnection request) { if (this.ifMaxSizeLessThanOrEqual != null) { diff --git a/microsoft-azure-storage/src/com/microsoft/azure/storage/LoggingProperties.java b/microsoft-azure-storage/src/com/microsoft/azure/storage/LoggingProperties.java index 95af529697092..f7c9d7043b96a 100644 --- a/microsoft-azure-storage/src/com/microsoft/azure/storage/LoggingProperties.java +++ b/microsoft-azure-storage/src/com/microsoft/azure/storage/LoggingProperties.java @@ -27,7 +27,7 @@ public final class LoggingProperties { private String version = "1.0"; /** - * An EnumSet of LoggingOperations that represents which storage operations should be logged. + * An EnumSet of LoggingOperations that represents which storage operations should be logged. */ private EnumSet logOperationTypes = EnumSet.noneOf(LoggingOperations.class); @@ -37,9 +37,9 @@ public final class LoggingProperties { private Integer retentionIntervalInDays; /** - * Gets an EnumSet of {@link LoggingOperations} that represents which storage operations should be logged. + * Gets an EnumSet of {@link LoggingOperations} that represents which storage operations should be logged. * - * @return An EnumSet of {@link LoggingOperations}. + * @return An EnumSet of {@link LoggingOperations}. */ public EnumSet getLogOperationTypes() { return this.logOperationTypes; @@ -67,7 +67,7 @@ public String getVersion() { * Sets the {@link LoggingOperations} for which storage operations should be logged. * * @param logOperationTypes - * An EnumSet of {@link LoggingOperations} to set. + * An EnumSet of {@link LoggingOperations} to set. */ public void setLogOperationTypes(final EnumSet logOperationTypes) { this.logOperationTypes = logOperationTypes; diff --git a/microsoft-azure-storage/src/com/microsoft/azure/storage/OperationContext.java b/microsoft-azure-storage/src/com/microsoft/azure/storage/OperationContext.java index 0564fd01cee9a..8613e7ee9abfc 100644 --- a/microsoft-azure-storage/src/com/microsoft/azure/storage/OperationContext.java +++ b/microsoft-azure-storage/src/com/microsoft/azure/storage/OperationContext.java @@ -186,7 +186,7 @@ public OperationContext() { /** * Gets the client side trace ID. * - * @return A String which represents the client request ID. + * @return A String which represents the client request ID. */ public String getClientRequestID() { return this.clientRequestID; diff --git a/microsoft-azure-storage/src/com/microsoft/azure/storage/RetryInfo.java b/microsoft-azure-storage/src/com/microsoft/azure/storage/RetryInfo.java index a94de66304393..7853a962c84de 100644 --- a/microsoft-azure-storage/src/com/microsoft/azure/storage/RetryInfo.java +++ b/microsoft-azure-storage/src/com/microsoft/azure/storage/RetryInfo.java @@ -45,7 +45,7 @@ public RetryInfo() { } /** - * Initializes a new instance of the {@link "RetryInfo"} class. + * Initializes a new instance of the {@link RetryInfo} class. * * @param retryContext * The {@link RetryContext} object that was passed in to the retry policy. @@ -114,7 +114,7 @@ public void setUpdatedLocationMode(LocationMode updatedLocationMode) { } /** - * Returns a string that represents the current {@link "RetryInfo"} instance. + * Returns a string that represents the current {@link RetryInfo} instance. * * @return A String which represents the current RetryInfo instance. */ diff --git a/microsoft-azure-storage/src/com/microsoft/azure/storage/SharedAccessPolicyHandler.java b/microsoft-azure-storage/src/com/microsoft/azure/storage/SharedAccessPolicyHandler.java index b0d1bbfd734dc..1816d33168cd0 100644 --- a/microsoft-azure-storage/src/com/microsoft/azure/storage/SharedAccessPolicyHandler.java +++ b/microsoft-azure-storage/src/com/microsoft/azure/storage/SharedAccessPolicyHandler.java @@ -58,8 +58,6 @@ private SharedAccessPolicyHandler(final Class cls) { * @return the HashMap of SharedAccessPolicies from the response * @throws SAXException * @throws ParserConfigurationException - * @throws ParseException - * if a date is incorrectly encoded in the stream * @throws IOException */ public static HashMap getAccessIdentifiers(final InputStream stream, diff --git a/microsoft-azure-storage/src/com/microsoft/azure/storage/analytics/CloudAnalyticsClient.java b/microsoft-azure-storage/src/com/microsoft/azure/storage/analytics/CloudAnalyticsClient.java index db7efd5d018fe..587b5bbeecc9b 100644 --- a/microsoft-azure-storage/src/com/microsoft/azure/storage/analytics/CloudAnalyticsClient.java +++ b/microsoft-azure-storage/src/com/microsoft/azure/storage/analytics/CloudAnalyticsClient.java @@ -385,9 +385,7 @@ public Iterable listLogRecords(StorageService service, Date startTime * @param logBlobs * An {@link Iterable} of blobs to parse LogRecords from. * @return - * An enumerable collection of objects that implement {@link LogRecords} and are retrieved lazily. - * @throws StorageException - * @throws URISyntaxException + * An enumerable collection of objects that implement {@link LogRecord} and are retrieved lazily. */ public static Iterable parseLogBlobs(Iterable logBlobs) { Utility.assertNotNull("logBlobs", logBlobs); @@ -398,12 +396,10 @@ public static Iterable parseLogBlobs(Iterable logBlobs) /** * Returns an enumerable collection of log records, retrieved lazily. * - * @param logBlobs - * An {@link Iterable} of blobs to parse LogRecords from. + * @param logBlob + * A single blob to parse LogRecords from. * @return - * An enumerable collection of objects that implement {@link LogRecords} and are retrieved lazily. - * @throws StorageException - * @throws URISyntaxException + * An enumerable collection of objects that implement {@link LogRecord} and are retrieved lazily. */ public static Iterable parseLogBlob(ListBlobItem logBlob) { Utility.assertNotNull("logBlob", logBlob); diff --git a/microsoft-azure-storage/src/com/microsoft/azure/storage/blob/BlobContainerProperties.java b/microsoft-azure-storage/src/com/microsoft/azure/storage/blob/BlobContainerProperties.java index 26a835206c0f5..6a7932b5fa125 100644 --- a/microsoft-azure-storage/src/com/microsoft/azure/storage/blob/BlobContainerProperties.java +++ b/microsoft-azure-storage/src/com/microsoft/azure/storage/blob/BlobContainerProperties.java @@ -108,10 +108,10 @@ public LeaseDuration getLeaseDuration() { /** * Gets the public access level for the container. * This field should only be set using the container's {@link #create(BlobContainerPublicAccessType, - * BlobRequestOptions, OperationContext) create} method or + * BlobRequestOptions, com.microsoft.azure.storage.OperationContext) create} method or * {@link #uploadPermissions(BlobContainerPermissions) uploadPermissions} method. * - * @return A {@link BlobContainerPublicAccessLevel} that specifies the level of public access + * @return A {@link BlobContainerPublicAccessType} that specifies the level of public access * that is allowed on the container. */ public BlobContainerPublicAccessType getPublicAccess() { @@ -171,7 +171,7 @@ protected void setLeaseDuration(final LeaseDuration leaseDuration) { /** * Sets the public access level on the container. * This should only be set using the container's {@link #create(BlobContainerPublicAccessType, - * BlobRequestOptions, OperationContext) create} method or + * BlobRequestOptions, com.microsoft.azure.storage.OperationContext) create} method or * {@link #uploadPermissions(BlobContainerPermissions) uploadPermissions} method. * @param publicAccess * A {@link BlobContainerPublicAccessType} object diff --git a/microsoft-azure-storage/src/com/microsoft/azure/storage/blob/BlobInputStream.java b/microsoft-azure-storage/src/com/microsoft/azure/storage/blob/BlobInputStream.java index fd3ccf52f6438..da6436deb94c3 100644 --- a/microsoft-azure-storage/src/com/microsoft/azure/storage/blob/BlobInputStream.java +++ b/microsoft-azure-storage/src/com/microsoft/azure/storage/blob/BlobInputStream.java @@ -337,7 +337,7 @@ else if (numberOfBytesRead == 0) { * elements b[0] through b[k-1], leaving elements b[k] through * b[b.length-1] unaffected. * - * The read(b) method for class {@link InputStream} has the same effect as: + * The read(b) method for class {@link InputStream} has the same effect as: * * read(b, 0, b.length) * diff --git a/microsoft-azure-storage/src/com/microsoft/azure/storage/blob/BlobProperties.java b/microsoft-azure-storage/src/com/microsoft/azure/storage/blob/BlobProperties.java index c336452d137b8..cfc80bd229460 100644 --- a/microsoft-azure-storage/src/com/microsoft/azure/storage/blob/BlobProperties.java +++ b/microsoft-azure-storage/src/com/microsoft/azure/storage/blob/BlobProperties.java @@ -304,7 +304,7 @@ public Date getLastModified() { /** * Gets a value indicating if the tier of the blob has been inferred. * - * @return A {@Link java.lang.Boolean} object which represents if the blob tier was inferred. + * @return A {@link java.lang.Boolean} object which represents if the blob tier was inferred. */ public Boolean isBlobTierInferred() { return this.isBlobTierInferredTier; } diff --git a/microsoft-azure-storage/src/com/microsoft/azure/storage/blob/CloudAppendBlob.java b/microsoft-azure-storage/src/com/microsoft/azure/storage/blob/CloudAppendBlob.java index b54f3be8323c2..42818b61e940a 100644 --- a/microsoft-azure-storage/src/com/microsoft/azure/storage/blob/CloudAppendBlob.java +++ b/microsoft-azure-storage/src/com/microsoft/azure/storage/blob/CloudAppendBlob.java @@ -357,7 +357,7 @@ public Long appendBlock(final InputStream sourceStream, final long length) throw * An {@link OperationContext} object which represents the context for the current operation. This object * is used to track requests to the storage service, and to provide additional runtime information about * the operation. - * @return The offset at which the block was appended. + * @return The offset at which the block was appended. * @throws IOException * If an I/O exception occurred. * @throws StorageException diff --git a/microsoft-azure-storage/src/com/microsoft/azure/storage/blob/CloudBlob.java b/microsoft-azure-storage/src/com/microsoft/azure/storage/blob/CloudBlob.java index e867f7637301d..fb7ff88af8305 100644 --- a/microsoft-azure-storage/src/com/microsoft/azure/storage/blob/CloudBlob.java +++ b/microsoft-azure-storage/src/com/microsoft/azure/storage/blob/CloudBlob.java @@ -1549,7 +1549,7 @@ protected final int downloadRangeInternal(final long blobOffset, final Long leng * A byte array which represents the buffer to which the blob bytes are downloaded. * @param bufferOffset * An int which represents the byte offset to use as the starting point for the target. - * @returns The total number of bytes read into the buffer. + * @return The total number of bytes read into the buffer. * * @throws StorageException */ @@ -1582,7 +1582,7 @@ public final int downloadRangeToByteArray(final long offset, final Long length, * An {@link OperationContext} object that represents the context for the current operation. This object * is used to track requests to the storage service, and to provide additional runtime information about * the operation. - * @returns The total number of bytes read into the buffer. + * @return The total number of bytes read into the buffer. * * @throws StorageException * If a storage service error occurred. diff --git a/microsoft-azure-storage/src/com/microsoft/azure/storage/blob/CloudBlobClient.java b/microsoft-azure-storage/src/com/microsoft/azure/storage/blob/CloudBlobClient.java index a01ddd0213c8a..1df73f89e86eb 100644 --- a/microsoft-azure-storage/src/com/microsoft/azure/storage/blob/CloudBlobClient.java +++ b/microsoft-azure-storage/src/com/microsoft/azure/storage/blob/CloudBlobClient.java @@ -136,7 +136,7 @@ public CloudBlobContainer getContainerReference(final String containerName) thro /** * Returns the value for the default delimiter used for cloud blob directories. The default is '/'. * - * @return A String which represents the value for the default delimiter. + * @return A String which represents the value for the default delimiter. */ public String getDirectoryDelimiter() { return this.directoryDelimiter; diff --git a/microsoft-azure-storage/src/com/microsoft/azure/storage/blob/SubStream.java b/microsoft-azure-storage/src/com/microsoft/azure/storage/blob/SubStream.java index f147b91b36f99..6588133aff401 100644 --- a/microsoft-azure-storage/src/com/microsoft/azure/storage/blob/SubStream.java +++ b/microsoft-azure-storage/src/com/microsoft/azure/storage/blob/SubStream.java @@ -60,7 +60,6 @@ public class SubStream extends InputStream { * @param streamLength The length of the substream. * @param lock An intrinsic lock to ensure thread-safe, concurrent operations * on substream instances wrapping the same InputStream. - * @throws Exception */ public SubStream(InputStream source, long startIndex, long streamLength, Object lock) { if (startIndex < 0 || streamLength < 1) { diff --git a/microsoft-azure-storage/src/com/microsoft/azure/storage/file/CloudFileDirectory.java b/microsoft-azure-storage/src/com/microsoft/azure/storage/file/CloudFileDirectory.java index b671958cee783..69a489e368261 100644 --- a/microsoft-azure-storage/src/com/microsoft/azure/storage/file/CloudFileDirectory.java +++ b/microsoft-azure-storage/src/com/microsoft/azure/storage/file/CloudFileDirectory.java @@ -764,11 +764,6 @@ public Iterable listFilesAndDirectories() { * * @return An enumerable collection of {@link ListFileItem} objects that represent the file and directory items in * this directory. - * - * @throws StorageException - * If a storage service error occurred. - * @throws URISyntaxException - * If the resource URI is invalid. */ @DoesServiceRequest public Iterable listFilesAndDirectories(FileRequestOptions options, OperationContext opContext) { @@ -791,11 +786,6 @@ public Iterable listFilesAndDirectories(FileRequestOptions options * * @return An enumerable collection of {@link ListFileItem} objects that represent the file and directory items in * this directory. - * - * @throws StorageException - * If a storage service error occurred. - * @throws URISyntaxException - * If the resource URI is invalid. */ @DoesServiceRequest public Iterable listFilesAndDirectories( diff --git a/microsoft-azure-storage/src/com/microsoft/azure/storage/file/CloudFileShare.java b/microsoft-azure-storage/src/com/microsoft/azure/storage/file/CloudFileShare.java index 1790b5a1afde3..e264c4e2fadc2 100644 --- a/microsoft-azure-storage/src/com/microsoft/azure/storage/file/CloudFileShare.java +++ b/microsoft-azure-storage/src/com/microsoft/azure/storage/file/CloudFileShare.java @@ -155,9 +155,7 @@ public CloudFileShare(final StorageUri storageUri) throws StorageException { * A java.net.URI object that represents the absolute URI of the share. * @param credentials * A {@link StorageCredentials} object used to authenticate access. - * @param snapshotID - * A String that represents the snapshot version, if applicable. - * + * * @throws StorageException * If a storage service error occurred. */ @@ -172,8 +170,6 @@ public CloudFileShare(final URI uri, final StorageCredentials credentials/*, Str * A {@link StorageUri} object which represents the absolute StorageUri of the share. * @param credentials * A {@link StorageCredentials} object used to authenticate access. - * @param snapshotID - * A String that represents the snapshot version, if applicable. * @throws StorageException * If a storage service error occurred. */ @@ -1511,7 +1507,7 @@ public final String getSnapshot() { * * @return true if the share is a snapshot, otherwise false. * - * @see DeleteSnapshotsOption + * @see com.microsoft.azure.storage.blob.DeleteSnapshotsOption */ public final boolean isSnapshot() { return this.snapshotID != null; diff --git a/microsoft-azure-storage/src/com/microsoft/azure/storage/file/FileInputStream.java b/microsoft-azure-storage/src/com/microsoft/azure/storage/file/FileInputStream.java index 36b24faaff913..87cdbe6e65674 100644 --- a/microsoft-azure-storage/src/com/microsoft/azure/storage/file/FileInputStream.java +++ b/microsoft-azure-storage/src/com/microsoft/azure/storage/file/FileInputStream.java @@ -329,7 +329,7 @@ else if (numberOfBytesRead == 0) { * bytes actually read; these bytes will be stored in elements b[0] through b[k-1], * leaving elements b[k] through b[b.length-1] unaffected. * - * The read(b) method for class {@link InputStream} has the same effect as: + * The read(b) method for class {@link InputStream} has the same effect as: * * read(b, 0, b.length) * diff --git a/microsoft-azure-storage/src/com/microsoft/azure/storage/queue/QueueEncryptionPolicy.java b/microsoft-azure-storage/src/com/microsoft/azure/storage/queue/QueueEncryptionPolicy.java index 4a6fdbdb494a0..52be832a267dd 100644 --- a/microsoft-azure-storage/src/com/microsoft/azure/storage/queue/QueueEncryptionPolicy.java +++ b/microsoft-azure-storage/src/com/microsoft/azure/storage/queue/QueueEncryptionPolicy.java @@ -83,7 +83,7 @@ public IKey getKey() { /** * Gets the key resolver used to select the correct key for decrypting existing queue messages. * - * @return A resolver that returns an {@link SymmetricKey} given a keyId. + * @return A resolver that returns an {@link IKey} given a keyId. */ public IKeyResolver getKeyResolver() { return this.keyResolver; diff --git a/microsoft-azure-storage/src/com/microsoft/azure/storage/table/CloudTableClient.java b/microsoft-azure-storage/src/com/microsoft/azure/storage/table/CloudTableClient.java index 283d2ffa5d647..3a6337d945975 100644 --- a/microsoft-azure-storage/src/com/microsoft/azure/storage/table/CloudTableClient.java +++ b/microsoft-azure-storage/src/com/microsoft/azure/storage/table/CloudTableClient.java @@ -36,6 +36,8 @@ import com.microsoft.azure.storage.StorageException; import com.microsoft.azure.storage.StorageExtendedErrorInformation; import com.microsoft.azure.storage.StorageUri; +import com.microsoft.azure.storage.blob.CloudBlobClient; +import com.microsoft.azure.storage.blob.BlobRequestOptions; import com.microsoft.azure.storage.core.ExecutionEngine; import com.microsoft.azure.storage.core.LazySegmentedIterable; import com.microsoft.azure.storage.core.SR; @@ -53,7 +55,7 @@ *

* A Table service endpoint is the base URI for Table service resources, including the DNS name of the storage account: *
- *     http://myaccount.table.core.windows.net
+ *     http://myaccount.table.core.windows.net
* For more information, see the MSDN topic Addressing Table Service Resources. *

diff --git a/microsoft-azure-storage/src/com/microsoft/azure/storage/table/EdmType.java b/microsoft-azure-storage/src/com/microsoft/azure/storage/table/EdmType.java index db3d1c87cf870..600d990140a3c 100644 --- a/microsoft-azure-storage/src/com/microsoft/azure/storage/table/EdmType.java +++ b/microsoft-azure-storage/src/com/microsoft/azure/storage/table/EdmType.java @@ -35,7 +35,7 @@ * OData Protocol Overview. *

* The Abstract Type System used to define the primitive types supported by OData is defined in detail in [MC-CSDL] (section 2.2.1). + * href="http://msdn.microsoft.com/en-us/library/dd541474.aspx">[MC-CSDL] (section 2.2.1). */ public enum EdmType { /** diff --git a/microsoft-azure-storage/src/com/microsoft/azure/storage/table/Encrypt.java b/microsoft-azure-storage/src/com/microsoft/azure/storage/table/Encrypt.java index 51f046e83f538..6c8c8663e9bcf 100644 --- a/microsoft-azure-storage/src/com/microsoft/azure/storage/table/Encrypt.java +++ b/microsoft-azure-storage/src/com/microsoft/azure/storage/table/Encrypt.java @@ -26,7 +26,7 @@ * annotation to specify whether to encrypt the data stored by a setter method or decrypt the data retrieved by a getter * method in a class implementing {@link TableEntity}. * - * @see {@link Ignore} + * @see Ignore */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) diff --git a/microsoft-azure-storage/src/com/microsoft/azure/storage/table/EntityProperty.java b/microsoft-azure-storage/src/com/microsoft/azure/storage/table/EntityProperty.java index 3172c43406ccd..a1d7984216912 100644 --- a/microsoft-azure-storage/src/com/microsoft/azure/storage/table/EntityProperty.java +++ b/microsoft-azure-storage/src/com/microsoft/azure/storage/table/EntityProperty.java @@ -393,7 +393,7 @@ public boolean getIsNull() { * Gets the class type of the {@link EntityProperty}. * * @return - * The Class of the {@link EntityProperty}. + * The Class<?> of the {@link EntityProperty}. */ public Class getType() { return this.type; diff --git a/microsoft-azure-storage/src/com/microsoft/azure/storage/table/TableEncryptionPolicy.java b/microsoft-azure-storage/src/com/microsoft/azure/storage/table/TableEncryptionPolicy.java index 353954b46bbd6..87080d46ba98e 100644 --- a/microsoft-azure-storage/src/com/microsoft/azure/storage/table/TableEncryptionPolicy.java +++ b/microsoft-azure-storage/src/com/microsoft/azure/storage/table/TableEncryptionPolicy.java @@ -88,7 +88,7 @@ public IKey getKey() { /** * Gets the key resolver used to select the correct key for decrypting existing table entities. * - * @return A resolver that returns an {@link SymmetricKey} given a keyId. + * @return A resolver that returns an {@link IKey} given a keyId. */ public IKeyResolver getKeyResolver() { return this.keyResolver; diff --git a/microsoft-azure-storage/src/com/microsoft/azure/storage/table/TableQuery.java b/microsoft-azure-storage/src/com/microsoft/azure/storage/table/TableQuery.java index b04d96d249448..5fbe3654678d7 100644 --- a/microsoft-azure-storage/src/com/microsoft/azure/storage/table/TableQuery.java +++ b/microsoft-azure-storage/src/com/microsoft/azure/storage/table/TableQuery.java @@ -43,10 +43,10 @@ *

* As an example, you could construct a table query using fluent syntax: *

- * TableQuery<TableServiceEntity> myQuery = TableQuery.from("Products", DynamicTableEntity.class)
- *     .where("(PartitionKey eq 'ProductsMNO') and (RowKey ge 'Napkin')")
- *     .take(25)
- *     .select(new String[] {"InventoryCount"});
+ * TableQuery<TableServiceEntity> myQuery = TableQuery.from("Products", DynamicTableEntity.class)
+ *     .where("(PartitionKey eq 'ProductsMNO') and (RowKey ge 'Napkin')")
+ *     .take(25)
+ *     .select(new String[] {"InventoryCount"});
*

* This example creates a query on the "Products" table for all entities where the PartitionKey value is "ProductsMNO" * and the RowKey value is greater than or equal to "Napkin" and requests the first 25 matching entities, selecting only @@ -597,7 +597,7 @@ public void setColumns(final String[] columns) { * constant. The PartitionKey and RowKey property values are String types for comparison purposes. For * example, to query all entities with a PartitionKey value of "AccessLogs" on table query myQuery: *

- *     myQuery.setFilterString("PartitionKey eq 'AccessLogs'"); + *     myQuery.setFilterString("PartitionKey eq 'AccessLogs'"); *

* The values that may be used in table queries are explained in more detail in the MSDN topic * @@ -676,7 +676,7 @@ public TableQuery take(final Integer take) { * PartitionKey and RowKey property values are String types for comparison purposes. For example, to * query all entities with a PartitionKey value of "AccessLogs" on table query myQuery: *

- *     myQuery = myQuery.where("PartitionKey eq 'AccessLogs'"); + *     myQuery = myQuery.where("PartitionKey eq 'AccessLogs'"); *

* The values that may be used in table queries are explained in more detail in the MSDN topic * diff --git a/microsoft-azure-storage/src/com/microsoft/azure/storage/table/TableRequestOptions.java b/microsoft-azure-storage/src/com/microsoft/azure/storage/table/TableRequestOptions.java index cd7e936ccfc54..b0b889fb83f19 100644 --- a/microsoft-azure-storage/src/com/microsoft/azure/storage/table/TableRequestOptions.java +++ b/microsoft-azure-storage/src/com/microsoft/azure/storage/table/TableRequestOptions.java @@ -27,7 +27,7 @@ public class TableRequestOptions extends RequestOptions { /** - * The interface whose function is used to get the for an entity property + * The interface whose function is used to get the {@link EdmType} for an entity property * given the partition key, row, key, and the property name, if the interface is implemented */ public interface PropertyResolver { @@ -223,7 +223,7 @@ public TablePayloadFormat getTablePayloadFormat() { } /** - * Gets the interface that contains a function which is used to get the for an entity property + * Gets the interface that contains a function which is used to get the {@link EdmType} for an entity property * given the partition key, row, key, and the property name. For more information about the {@link PropertyResolver} * defaults, see {@link #setPropertyResolver(PropertyResolver)}. * @@ -286,7 +286,7 @@ public void setTablePayloadFormat(TablePayloadFormat payloadFormat) { } /** - * Sets the interface that contains a function which is used to get the for an entity property + * Sets the interface that contains a function which is used to get the {@link EdmType} for an entity property * given the partition key, row, key, and the property name. *

* The default {@link PropertyResolver} is set in the client and is by default null, indicating not to use a @@ -340,11 +340,11 @@ public void setEncryptionPolicy(TableEncryptionPolicy encryptionPolicy) { * required if a {@link TableEncryptionPolicy} is specified. *

* You can change the {@link EncryptionResolver} on this request by setting this property. You can also change the - * value on the {@link TableServiceClient#getDefaultRequestOptions()} object so that all subsequent requests made + * value on the {@link TableServiceClient#getDefaultRequestOptions()} object so that all subsequent requests made * via the service client will use that {@link EncryptionResolver}. * - * @param propertyResolver - * Specifies the {@link PropertyResolver} to set. + * @param encryptionResolver + * Specifies the {@link EncryptionResolver} to set. */ public void setEncryptionResolver(EncryptionResolver encryptionResolver) { this.encryptionResolver = encryptionResolver; diff --git a/microsoft-azure-storage/src/com/microsoft/azure/storage/table/TableResult.java b/microsoft-azure-storage/src/com/microsoft/azure/storage/table/TableResult.java index 8be6cf699fec4..9ce7cd84323d7 100644 --- a/microsoft-azure-storage/src/com/microsoft/azure/storage/table/TableResult.java +++ b/microsoft-azure-storage/src/com/microsoft/azure/storage/table/TableResult.java @@ -50,7 +50,7 @@ public TableResult() { * Initializes a {@link TableResult} instance with the specified HTTP status code. * * @param httpStatusCode - * An int which represents the HTTP status code for the table operation returned by the server. + * An int which represents the HTTP status code for the table operation returned by the server. */ public TableResult(final int httpStatusCode) { this.httpStatusCode = httpStatusCode; @@ -71,7 +71,7 @@ public String getEtag() { * Gets the HTTP status code returned by a table operation request. * * @return - * An int which represents the HTTP status code for the table operation returned by the server. + * An int which represents the HTTP status code for the table operation returned by the server. */ public int getHttpStatusCode() { return this.httpStatusCode; diff --git a/microsoft-azure-storage/src/com/microsoft/azure/storage/table/TableServiceEntity.java b/microsoft-azure-storage/src/com/microsoft/azure/storage/table/TableServiceEntity.java index 014059ec9f7e7..fe0898dadb976 100644 --- a/microsoft-azure-storage/src/com/microsoft/azure/storage/table/TableServiceEntity.java +++ b/microsoft-azure-storage/src/com/microsoft/azure/storage/table/TableServiceEntity.java @@ -58,7 +58,7 @@ *

* The following table shows the supported property data types in Microsoft Azure storage and the corresponding Java * types when deserialized. - * + *
* * * diff --git a/microsoft-azure-storage/src/com/microsoft/azure/storage/table/TableServiceException.java b/microsoft-azure-storage/src/com/microsoft/azure/storage/table/TableServiceException.java index 93d4de9e3ce3e..5eb1be1fc4c28 100644 --- a/microsoft-azure-storage/src/com/microsoft/azure/storage/table/TableServiceException.java +++ b/microsoft-azure-storage/src/com/microsoft/azure/storage/table/TableServiceException.java @@ -62,7 +62,7 @@ protected static TableServiceException generateTableServiceException(RequestResu * @param message * A String that represents the error message returned by the table operation. * @param statusCode - * An int>/code> which represents the HTTP status code returned by the table operation. + * An int which represents the HTTP status code returned by the table operation. * @param extendedErrorInfo * A {@link StorageExtendedErrorInformation} object that represents the extended error information * returned by the table operation.
Storage TypeEdmType Value