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

templates.ResolvedServerVariableSpecification.hbs Maven / Gradle / Ivy

There is a newer version: 0.15.3
Show newest version
package {{packageName}};

import io.polyapi.client.api.model.PolyEntity;
import io.polyapi.client.api.model.PolyMetadata;
import io.polyapi.client.api.model.variable.{{~#if secret}}ServerVariable{{~else}}RetrievableServerVariable{{/if}}Handler;
import io.polyapi.commons.api.model.PolyGeneratedClass;
{{~#each imports}}
import {{this}};
{{~/each}}

/**
 * Poly server variable with ID {{id}}.
 */
@PolyEntity("{{id}}")
@PolyMetadata(paramTypes = "{{{valueType}}}")
@PolyGeneratedClass
public interface {{className}} extends{{~#if secret}} ServerVariable{{~else}} RetrievableServerVariable{{/if}}Handler<{{valueType}}> {
{{~#if secret}}
{{~else}}
    @Override
    {{valueType}} get();
{{/if}}

    @Override
    void update({{valueType}} value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy