io.polyapi.plugin.model.specification.resolved.ResolvedServerVariableSpecification 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 io.polyapi.plugin.model.specification.resolved;
import lombok.Getter;
import java.util.Set;
@Getter
public class ResolvedServerVariableSpecification extends ResolvedSpecification {
private final String valueType;
private final Boolean secret;
public ResolvedServerVariableSpecification(String id, String name, String packageName, Set imports, String className, String valueType, Boolean secret) {
super(id, name, packageName, imports, className);
this.valueType = valueType;
this.secret = secret;
}
}