templates.ResolvedServerVariableSpecification.hbs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of polyapi-maven-plugin Show documentation
Show all versions of polyapi-maven-plugin Show documentation
Maven plugin to run handle Poly API functions.
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);
}