Skip to content

Commit 4802616

Browse files
committed
# Update javadocs
1 parent f89fe30 commit 4802616

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

services/azure-media/src/main/java/com/microsoft/windowsazure/services/media/models/AssetDeliveryPolicy.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,10 +173,20 @@ public static EntityDeleteOperation delete(String assetDeliveryPolicyId) {
173173
return new DefaultDeleteOperation(ENTITY_SET, assetDeliveryPolicyId);
174174
}
175175

176+
/**
177+
* Create an operation that will update the given asset delivery policy.
178+
*
179+
* @param assetDeliveryPolicyId
180+
* id of the asset delivery policy to update
181+
* @return the update operation
182+
*/
176183
public static Updater update(String assetDeliveryPolicyId) {
177184
return new Updater(assetDeliveryPolicyId);
178185
}
179186

187+
/**
188+
* The Class Updater.
189+
*/
180190
public static class Updater extends EntityOperationBase implements EntityUpdateOperation {
181191

182192
private EnumSet<AssetDeliveryProtocol> assetDeliveryProtocol;

services/azure-media/src/main/java/com/microsoft/windowsazure/services/media/models/ContentKeyAuthorizationPolicyOption.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,10 +152,20 @@ public static EntityDeleteOperation delete(String contentKeyAuthorizationPolicyO
152152
return new DefaultDeleteOperation(ENTITY_SET, contentKeyAuthorizationPolicyOptionId);
153153
}
154154

155+
/**
156+
* Create an operation that will update the given content key authorization policy option.
157+
*
158+
* @param contentKeyAuthorizationPolicyOptionId
159+
* id of the acontent key authorization policy option to update
160+
* @return the update operation
161+
*/
155162
public static Updater update(String contentKeyAuthorizationPolicyOptionId) {
156163
return new Updater(contentKeyAuthorizationPolicyOptionId);
157164
}
158165

166+
/**
167+
* The Class Updater.
168+
*/
159169
public static class Updater extends EntityOperationBase implements EntityUpdateOperation {
160170

161171
private int keyDeliveryType;

0 commit comments

Comments
 (0)