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

com.jelastic.api.system.persistence.Feature Maven / Gradle / Ivy

There is a newer version: 8.12-1
Show newest version
/*Server class MD5: e9639952e80f894d97ddaee956be5586*/
package com.jelastic.api.system.persistence;

import com.jelastic.api.development.response.interfaces.ArrayItem;

/**
 * @name Jelastic API Client
 * @version 8.11.2
 * @copyright Jelastic, Inc.
 */
public class Feature extends ArrayItem {

    private FeatureType name;

    public Feature() {
    }

    public Feature(FeatureType name) {
        this.name = name;
    }

    public FeatureType getName() {
        return name;
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy