CPD Results
The following document contains the results of PMD's CPD 7.18.0.
Duplications
| File | Line |
|---|---|
| io/wcm/handler/link/type/InternalCrossContextLinkType.java | 93 |
| io/wcm/handler/link/type/InternalLinkType.java | 95 |
}
@Override
public boolean hasRichTextPlugin() {
return true;
}
@Override
public boolean accepts(@NotNull String linkRef) {
// accept as internal link if the ref starts with "/content/"
return StringUtils.startsWith(linkRef, "/content/")
&& !MediaLinkType.isDefaultMediaContentPath(linkRef);
}
@Override
public boolean accepts(@NotNull LinkRequest linkRequest) {
if (internalLinkResolver.acceptPage(linkRequest.getPage(), resolverOptions)) {
// support direct links to pages
return true;
}
// check for matching link type ID in link resource
return super.accepts(linkRequest);
}
@Override
public @NotNull Link resolveLink(@NotNull Link link) {
return internalLinkResolver.resolveLink(link, resolverOptions);
}
/**
* Get synthetic link resource for this link type.
* @param resourceResolver Resource resolver
* @param path Resource path. Can be a non-existing path, but the path should be located somewhere within the
* applications content paths to make sure the handler configuration looked up via context-aware services
* is the expected one.
* @param pageRef Path to target page
* @return Synthetic link resource
*/
public static @NotNull Resource getSyntheticLinkResource(@NotNull ResourceResolver resourceResolver,
@NotNull String path, @NotNull String pageRef) {
Map<String, Object> map = new HashMap<>();
map.put(LinkNameConstants.PN_LINK_TYPE, ID);
map.put(LinkNameConstants.PN_LINK_CROSSCONTEXT_CONTENT_REF, pageRef); |
|