Skip to content

Commit

Permalink
add copy method from AEM 6.5.18 API
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanseifert committed Aug 24, 2023
1 parent 9b315ee commit 6f308d2
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions core/src/main/java/io/wcm/testing/mock/aem/MockPageManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -430,13 +430,19 @@ public Resource move(Resource resource, String destination, String beforeName, b
throw new UnsupportedOperationException();
}

// AEM 6.5.18
@SuppressWarnings("unused")
public Resource move(Resource resource, String destination, String beforeName, boolean shallow,
boolean resolveConflict, String[] adjustRefs, String[] publishRefs, String arg7) throws WCMException {
throw new UnsupportedOperationException();
}

@Override
public Resource copy(CopyOptions options) throws WCMException {
throw new UnsupportedOperationException();
}

// AEM Cloud
@SuppressWarnings("unused")
@Override
public void delete(Resource arg0, boolean arg1, boolean arg2, boolean arg3) throws WCMException {
throw new UnsupportedOperationException();
}
Expand Down

0 comments on commit 6f308d2

Please sign in to comment.