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

org.openstack4j.openstack.compute.domain.NovaPassword 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.ServerPassword;

import com.fasterxml.jackson.annotation.JsonProperty;
/**
 * A model class to return the password of the server
 * 
 * @author vinod borole
 *
 */
public class NovaPassword implements ServerPassword {

    private static final long serialVersionUID = 1L;
    @JsonProperty
    private String password;
    
    /**
     * {@inheritDoc}
     */
    @Override
    public String getPassword() {
        return password;
    }
    
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy