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

org.openstack4j.openstack.common.ListEntity Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
package org.openstack4j.openstack.common;


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

import org.openstack4j.model.ModelEntity;

/**
 * Simple name value pair based Entity
 * 
 * @author Jeremy Unruh
 */
public class ListEntity extends ArrayList implements ModelEntity {

    private static final long serialVersionUID = 1L;

    /*
    public static ListEntity create(String key, Object value) {
        return new ListEntity().add(key, value);
    }
    */
    
    public ListEntity(List list){
    	super(list);
    }
    
    
    public boolean add(T value) {
    	return super.add(value);
        //super.put(value);
        //return this;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy