ActionsProvider.java org::apache::iceberg::actions::ActionsProvider org::apache::iceberg::actions /* *LicensedtotheApacheSoftwareFoundation(ASF)underone *ormorecontributorlicenseagreements.SeetheNOTICEfile *distributedwiththisworkforadditionalinformation *regardingcopyrightownership.TheASFlicensesthisfile *toyouundertheApacheLicense,Version2.0(the *"License");youmaynotusethisfileexceptincompliance *withtheLicense.YoumayobtainacopyoftheLicenseat * *http://www.apache.org/licenses/LICENSE-2.0 * *Unlessrequiredbyapplicablelaworagreedtoinwriting, *softwaredistributedundertheLicenseisdistributedonan *"ASIS"BASIS,WITHOUTWARRANTIESORCONDITIONSOFANY *KIND,eitherexpressorimplied.SeetheLicenseforthe *specificlanguagegoverningpermissionsandlimitations *undertheLicense. */ packageorg.apache.iceberg.actions; importorg.apache.iceberg.Table; publicinterfaceActionsProvider{ defaultSnapshotTablesnapshotTable(StringsourceTableIdent){ thrownewUnsupportedOperationException( this.getClass().getName()+"doesnotimplementsnapshotTable"); } defaultMigrateTablemigrateTable(StringtableIdent){ thrownewUnsupportedOperationException( this.getClass().getName()+"doesnotimplementmigrateTable"); } defaultDeleteOrphanFilesdeleteOrphanFiles(Tabletable){ thrownewUnsupportedOperationException( this.getClass().getName()+"doesnotimplementdeleteOrphanFiles"); } defaultRewriteManifestsrewriteManifests(Tabletable){ thrownewUnsupportedOperationException( this.getClass().getName()+"doesnotimplementrewriteManifests"); } defaultRewriteDataFilesrewriteDataFiles(Tabletable){ thrownewUnsupportedOperationException( this.getClass().getName()+"doesnotimplementrewriteDataFiles"); } defaultExpireSnapshotsexpireSnapshots(Tabletable){ thrownewUnsupportedOperationException( this.getClass().getName()+"doesnotimplementexpireSnapshots"); } defaultDeleteReachableFilesdeleteReachableFiles(StringmetadataLocation){ thrownewUnsupportedOperationException( this.getClass().getName()+"doesnotimplementdeleteReachableFiles"); } defaultRewritePositionDeleteFilesrewritePositionDeletes(Tabletable){ thrownewUnsupportedOperationException( this.getClass().getName()+"doesnotimplementrewritePositionDeletes"); } }