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

org.openstack4j.model.murano.v1.domain.ServiceInfo Maven / Gradle / Ivy

There is a newer version: 3.11
Show newest version
package org.openstack4j.model.murano.v1.domain;

import org.openstack4j.model.ModelEntity;

import java.util.List;

/**
 * @author Nikolay Mahotkin.
 */
public interface ServiceInfo extends ModelEntity {
    /**
     * @return service id.
     */
    String getId();

    /**
     * @return service name.
     */
    String getName();

    /**
     * @return service type(class) name.
     */
    String getType();

    /**
     * @return action list for current service (if available).
     */
    List getActions();

    /**
     * @return service status.
     */
    String getStatus();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy