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

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

package com.activitystream.aspects;

import com.activitystream.Aspect;

import java.util.ArrayList;
import java.util.List;
import java.util.Map;

public class ECommerceAspect implements Aspect {

    private ECommerceAspectItem[] items = new ECommerceAspectItem[]{};

    public ECommerceAspect items(ECommerceAspectItem... items) {
        this.items = items;
        return this;
    }

    @Override
    public void addToObject(Map jsonObject) {
        if (items.length > 0) {
            List inv = new ArrayList();
            for (ECommerceAspectItem item : items) {
                inv.add(item.toJson());
            }
            jsonObject.put("items", inv);
        }

    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy