> +
> + private final Predicate<Storage> matchBootDevice = new
> Predicate<Storage>() {
> + @Override
> + public boolean apply(Storage input) {
> + return input.bootDevice() == null ? false : input.bootDevice();
> + }
> + };
> +
> + private final ProfitBricksApi api;
> + private final Predicate<String> snapshotAvailablePredicate;
> + private final Function<Provisionable, Image> imageTransformer;
> + private final ListeningExecutorService userExecutor;
> +
> + @Inject
> + ProfitBricksImageExtension(ProfitBricksApi api,
> + @Named(TIMEOUT_SNAPSHOT_AVAILABLE) Predicate<String>
> snapshotAvailablePredicate,
Same about the image available property.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/929/files#r54725159