io.polyapi.plugin.model.specification.resolved.ResolvedStandardAuthFunctionSpecification 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;
public class ResolvedStandardAuthFunctionSpecification extends ResolvedAuthFunctionSpecification {
private final Boolean audienceRequired;
public ResolvedStandardAuthFunctionSpecification(ResolvedFunctionSpecification base, Boolean audienceRequired) {
super(base);
this.audienceRequired = audienceRequired;
}
public Boolean getAudienceRequired() {
return audienceRequired;
}
}