Skip to content

Commit

Permalink
update workding: Next Generation Dynamic Media -> Dynamic Media with …
Browse files Browse the repository at this point in the history
…OpenAPI
  • Loading branch information
stefanseifert committed Jul 1, 2024
1 parent 1c40d9b commit d6384c6
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
import com.day.cq.dam.api.Asset;

/**
* Supports rendering asset renditions from stored in AEMaaCS sites instance via Next Generation Dynamic Media
* "Web-Optimized Image Delivery", rendering the renditions on the edge.
* Supports rendering asset renditions from stored in AEMaaCS sites instance via "Web-Optimized Image Delivery",
* rendering the renditions on the edge.
* This is not available in AEM 6.5 or AEMaaCS SDK.
*/
public interface WebOptimizedImageDeliveryService {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class WebOptimizedImageDeliveryServiceImpl implements WebOptimizedImageDe

@ObjectClassDefinition(
name = "wcm.io Media Handler Web-Optimized Image Delivery Support",
description = "Support for Next Generation Dynamic Media Web-Optimized Image Delivery capabilites.")
description = "Support for AEMaaCS Web-Optimized Image Delivery capabilites.")
@interface Config {

@AttributeDefinition(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
import io.wcm.handler.mediasource.ngdm.impl.NextGenDynamicMediaConfigService;

/**
* Prepares Next Generation Dynamic Media Remote Assets configuration for GraniteUI components (fileupload, pathfield).
* Prepares Dynamic Media with OpenAPI Remote Assets configuration for GraniteUI components (fileupload, pathfield).
*/
@Model(adaptables = SlingHttpServletRequest.class)
@ProviderType
Expand Down Expand Up @@ -71,13 +71,13 @@ private static String buildConfigJsonString(@NotNull NextGenDynamicMediaConfigSe
return MAPPER.writeValueAsString(map);
}
catch (JsonProcessingException ex) {
log.warn("Unable to serialize Next Generation Dynamic Media config to JSON.", ex);
log.warn("Unable to serialize Dynamic Media with OpenAPI config to JSON.", ex);
return "{}";
}
}

/**
* @return true if Next Generation Dynamic Media is available and enabled.
* @return true if Dynamic Media with OpenAPI for remote assets is available and enabled.
*/
public boolean isEnabled() {
return this.enabled;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
import io.wcm.sling.models.annotations.AemObject;

/**
* Handles remote asset referenced via Next Generation Dynamic Media.
* Handles remote asset referenced via Dynamic Media with OpenAPI.
*/
@Model(adaptables = {
SlingHttpServletRequest.class, Resource.class
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public interface NextGenDynamicMediaConfigService {
boolean isEnabledRemoteAssets();

/**
* Enable Next Generation Dynamic Media for local assets in this AEMaaCS instance.
* Enable Dynamic Media with OpenAPI for local assets in this AEMaaCS instance.
* @return true if enabled for local assets.
*/
boolean isEnabledLocalAssets();
Expand Down Expand Up @@ -119,7 +119,7 @@ public interface NextGenDynamicMediaConfigService {
String getAssetMetadataPath();

/**
* Gets the Next Generation Dynamic Media tenant (also known technically as the repository ID) for remote assets.
* Gets the Dynamic Media with OpenAPI tenant (also known technically as the repository ID) for remote assets.
* @return the repository ID
*/
@Nullable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public class NextGenDynamicMediaConfigServiceImpl implements NextGenDynamicMedia

@ObjectClassDefinition(
name = "wcm.io Media Handler Dynamic Media with OpenAPI Support",
description = "Support for Next Generation Dynamic Media.")
description = "Support for Dynamic Media with OpenAPI.")
@interface Config {

@AttributeDefinition(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
import com.day.cq.dam.api.Asset;

/**
* Parses and validates Next Generation Dynamic Media references.
* Parses and validates Dynamic Media with OpenAPI asset references.
* <p>
* Example: <code>/urn:aaid:aem:12345678-abcd-abcd-abcd-abcd12345678/my-image.jpg</code>
* </p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* #L%
*/
/**
* Media source implementation for Next Generation Dynamic Media.
* Media source implementation for Dynamic Media with OpenAPI.
*/
@org.osgi.annotation.versioning.Version("1.1.0")
package io.wcm.handler.mediasource.ngdm;

0 comments on commit d6384c6

Please sign in to comment.