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

com.evrythng.thng.resource.model.store.action.Actions Maven / Gradle / Ivy

There is a newer version: 1.33
Show newest version
/*
 * (c) Copyright 2015 EVRYTHNG Ltd London / Zurich
 * www.evrythng.com
 */
package com.evrythng.thng.resource.model.store.action;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

/**
* Rest model for actions.
*/
public class Actions extends ArrayList {

	private static final long serialVersionUID = -6314117222194081181L;

	public Actions(final List actions) {

		addAll(actions);
	}

	public Actions(final Action... actions) {

		addAll(Arrays.asList(actions));
	}

	public Actions() {

	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy