io.fusionauth.domain.api.ThemeSearchRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fusionauth-java-client Show documentation
Show all versions of fusionauth-java-client Show documentation
The Java Client library provides a native Java binding to the FusionAuth REST API.
The newest version!
/*
* Copyright (c) 2023, FusionAuth, All Rights Reserved
*/
package io.fusionauth.domain.api;
import com.inversoft.json.JacksonConstructor;
import io.fusionauth.domain.Buildable;
import io.fusionauth.domain.search.ThemeSearchCriteria;
/**
* Search request for Themes.
*
* @author Mark Manes
*/
public class ThemeSearchRequest implements Buildable {
public ThemeSearchCriteria search = new ThemeSearchCriteria();
@JacksonConstructor
public ThemeSearchRequest() {
}
public ThemeSearchRequest(ThemeSearchCriteria search) {
this.search = search;
}
}
© 2015 - 2026 Weber Informatics LLC | Privacy Policy