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

com.activitystream.aspects.CommerceAspect Maven / Gradle / Ivy

package com.activitystream.aspects;

import com.activitystream.Aspect;

import java.util.*;

public class CommerceAspect implements Aspect {

    private List items = new ArrayList<>();

    public CommerceAspect items(CommerceAspectItem... items) {
        this.items.addAll(Arrays.asList(items));
        return this;
    }

    @Override
    public void addToObject(Map jsonObject, Set processed) {
        List inv = new ArrayList();
        for (CommerceAspectItem item : items) {
            if (item != null) inv.add(item.toJson(processed));
        }
        jsonObject.put("items", inv);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy