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

com.testfabrik.webmate.javasdk.packagemgmt.ImagePool Maven / Gradle / Ivy

There is a newer version: 0.56
Show newest version
package com.testfabrik.webmate.javasdk.packagemgmt;

import com.fasterxml.jackson.annotation.JsonValue;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.node.ArrayNode;
import com.fasterxml.jackson.databind.node.ObjectNode;
import com.testfabrik.webmate.javasdk.JacksonMapper;

import java.util.Collection;
import java.util.HashSet;
import java.util.Set;

/**
 * The image pool is a container class for image ids. It is used when images are uploaded to webmate.
 */
public class ImagePool {

    private final Set imageIds;

    public ImagePool(Collection imageIds) {
        this.imageIds = new HashSet<>(imageIds);
    }

    public ImagePool(ImageId imageId) {
        HashSet imageIds = new HashSet<>();
        if (imageId != null) {
            imageIds.add(imageId);
        }
        this.imageIds = imageIds;
    }

    public Set getImageIds() {
        return imageIds;
    }

    public boolean contains(ImageId imageId) {
        return this.imageIds.contains(imageId);
    }

    @JsonValue
    public JsonNode toJson() {
        ObjectMapper om = JacksonMapper.getInstance();
        ObjectNode root = om.createObjectNode();

        ArrayNode array = root.putArray("imagePool");
        for (ImageId imageId : this.imageIds) {
            array.add(imageId.toString());
        }

        return root;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy