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

org.openstack4j.openstack.identity.v2.domain.KeystoneCreateRole Maven / Gradle / Ivy

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

import org.openstack4j.model.ModelEntity;

import com.fasterxml.jackson.annotation.JsonRootName;

@JsonRootName("role")
public class KeystoneCreateRole implements ModelEntity {
	
	private static final long serialVersionUID = 1L;
	private String name;

	public KeystoneCreateRole() {
	}
	
	public KeystoneCreateRole(String name) {
		this.name = name;
	}
	
	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy