All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.bdeploy.bhive.op.ObjectLoadOperation Maven / Gradle / Ivy

Go to download

Public API including dependencies, ready to be used for integrations and plugins.

There is a newer version: 7.3.6
Show newest version
package io.bdeploy.bhive.op;

import static io.bdeploy.common.util.RuntimeAssert.assertNotNull;

import java.io.InputStream;

import io.bdeploy.bhive.BHive;
import io.bdeploy.bhive.ReadOnlyOperation;
import io.bdeploy.bhive.model.ObjectId;
import io.bdeploy.bhive.model.Tree;
import io.bdeploy.bhive.objects.ObjectDatabase;

/**
 * Loads the specified {@link ObjectId} from its underlying storage in the
 * {@link ObjectDatabase} of the {@link BHive}.
 */
@ReadOnlyOperation
public class ObjectLoadOperation extends BHive.Operation {

    private ObjectId objectId;

    @Override
    public InputStream call() throws Exception {
        assertNotNull(objectId, "Object to load not set");
        return getObjectManager().db(x -> x.getStream(objectId));
    }

    /**
     * The {@link Tree}s {@link ObjectId} to load.
     */
    public ObjectLoadOperation setObject(ObjectId obj) {
        this.objectId = obj;
        return this;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy