Skip to content

Commit

Permalink
RODA 5 downgrade fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
SugaryLump committed Oct 25, 2024
1 parent 9a6ccf5 commit e60d1ec
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions roda-common/roda-common-data/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@
<schemaDirectory>src/main/resources/backfill</schemaDirectory>
<schemaIncludes>
<include>add_documents.xsd</include>
<include>delete_document_ids.xsd</include>
</schemaIncludes>
<cleanPackageDirectories>true</cleanPackageDirectories>
<generatePackage>org.roda.core.plugins.base.maintenance.backfill.beans</generatePackage>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
import org.roda.core.data.utils.XMLUtils;
import org.roda.core.data.v2.IsModelObject;
import org.roda.core.data.v2.IsRODAObject;
import org.roda.core.data.v2.disposal.confirmation.DisposalConfirmation;
import org.roda.core.data.v2.index.IsIndexed;
import org.roda.core.data.v2.index.filter.Filter;
import org.roda.core.data.v2.index.filter.OneOfManyFilterParameter;
Expand All @@ -31,6 +30,7 @@
import org.roda.core.data.v2.ip.IndexedDIP;
import org.roda.core.data.v2.ip.StoragePath;
import org.roda.core.data.v2.ip.TransferredResource;
import org.roda.core.data.v2.ip.disposal.DisposalConfirmation;
import org.roda.core.data.v2.ip.metadata.IndexedPreservationAgent;
import org.roda.core.data.v2.ip.metadata.IndexedPreservationEvent;
import org.roda.core.data.v2.jobs.Job;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@

import java.util.List;

import org.roda.core.data.v2.disposal.confirmation.DisposalConfirmation;
import org.roda.core.data.v2.index.IsIndexed;
import org.roda.core.data.v2.ip.disposal.DisposalConfirmation;
import org.roda.core.plugins.Plugin;

/**
* @author Alexandre Flores <[email protected]>
*/
public class GenerateDisposalConfirmationBackfillPlugin extends GenerateRODAEntityBackfillPlugin<DisposalConfirmation> {
public class GenerateDisposalConfirmationBackfillPlugin
extends GenerateRODAEntityBackfillPlugin<org.roda.core.data.v2.ip.disposal.DisposalConfirmation> {

@Override
protected <I extends IsIndexed> Class<I> getIndexClass() {
Expand Down

0 comments on commit e60d1ec

Please sign in to comment.