com.evrythng.thng.resource.model.store.action.Actions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of thng-resource-model Show documentation
Show all versions of thng-resource-model Show documentation
Models for REST resources representations.
/*
* (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