mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-11 08:52:58 +00:00
Update Datasets.java
This commit is contained in:
parent
4477017b67
commit
2bdb52b104
@ -215,6 +215,7 @@ public final class Datasets extends BaseBrowsableEntityResource<
|
|||||||
@ActionParam(PARAM_LIMIT) int limit) {
|
@ActionParam(PARAM_LIMIT) int limit) {
|
||||||
return super.browse(path, filter, start, limit);
|
return super.browse(path, filter, start, limit);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Action(name = ACTION_GET_BROWSE_PATHS)
|
@Action(name = ACTION_GET_BROWSE_PATHS)
|
||||||
@Override
|
@Override
|
||||||
@Nonnull
|
@Nonnull
|
||||||
@ -222,12 +223,14 @@ public final class Datasets extends BaseBrowsableEntityResource<
|
|||||||
@ActionParam(value = "urn", typeref = com.linkedin.common.Urn.class) @Nonnull Urn urn) {
|
@ActionParam(value = "urn", typeref = com.linkedin.common.Urn.class) @Nonnull Urn urn) {
|
||||||
return super.getBrowsePaths(urn);
|
return super.getBrowsePaths(urn);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Action(name = ACTION_INGEST)
|
@Action(name = ACTION_INGEST)
|
||||||
@Override
|
@Override
|
||||||
@Nonnull
|
@Nonnull
|
||||||
public Task<Void> ingest(@ActionParam(PARAM_SNAPSHOT) @Nonnull DatasetSnapshot snapshot) {
|
public Task<Void> ingest(@ActionParam(PARAM_SNAPSHOT) @Nonnull DatasetSnapshot snapshot) {
|
||||||
return super.ingest(snapshot);
|
return super.ingest(snapshot);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Action(name = ACTION_GET_SNAPSHOT)
|
@Action(name = ACTION_GET_SNAPSHOT)
|
||||||
@Override
|
@Override
|
||||||
@Nonnull
|
@Nonnull
|
||||||
@ -235,6 +238,7 @@ public final class Datasets extends BaseBrowsableEntityResource<
|
|||||||
@ActionParam(PARAM_ASPECTS) @Optional @Nullable String[] aspectNames) {
|
@ActionParam(PARAM_ASPECTS) @Optional @Nullable String[] aspectNames) {
|
||||||
return super.getSnapshot(urnString, aspectNames);
|
return super.getSnapshot(urnString, aspectNames);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Action(name = ACTION_BACKFILL)
|
@Action(name = ACTION_BACKFILL)
|
||||||
@Override
|
@Override
|
||||||
@Nonnull
|
@Nonnull
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user