![JAR search and dependency download from the Maven repository](/logo.png)
net.savantly.sprout.module.content.model.webPageLayout.WebPageLayoutRepository Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sprout-modules-content Show documentation
Show all versions of sprout-modules-content Show documentation
Provides dynamic content management for the Sprout Platform
The newest version!
package net.savantly.sprout.module.content.model.webPageLayout;
import org.springframework.data.repository.query.Param;
import org.springframework.data.rest.core.annotation.RepositoryRestResource;
import net.savantly.sprout.core.domain.PersistedDomainObjectRepository;
@RepositoryRestResource(collectionResourceRel = "webPageLayouts", itemResourceRel = "webPageLayout", path = "webPagesLayouts")
public interface WebPageLayoutRepository extends PersistedDomainObjectRepository {
WebPageLayout findOneByName(@Param("name") String name);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy