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

org.openstack4j.openstack.compute.domain.NovaSecurityGroup Maven / Gradle / Ivy

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

import org.openstack4j.model.compute.SecurityGroup;

import com.fasterxml.jackson.annotation.JsonRootName;

@JsonRootName("security_groups")
public class NovaSecurityGroup implements SecurityGroup {

    private static final long serialVersionUID = 1L;
    private String name;
    
    @Override
    public String getName() {
        return name;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy