Interface CustomContentApiSupportParams
-
- All Known Implementing Classes:
CustomContentApiSupportParamsImpl
public interface CustomContentApiSupportParams
Bean to provide the parameters for the CustomContentApiSupport class this allows us to continue using the constructor injection on the CustomContentTypeApiSupport SPI. Additional required parameters will be added to this class, which will avoid the binary breaking changes required to add additional parameters to a constructor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ContentCreator
getContentCreator()
ContentEntityManager
getContentEntityManager()
CustomContentManager
getCustomContentManager()
ApiSupportProvider
getProvider()
-
-
-
Method Detail
-
getProvider
ApiSupportProvider getProvider()
-
getCustomContentManager
CustomContentManager getCustomContentManager()
-
getContentCreator
ContentCreator getContentCreator()
-
getContentEntityManager
ContentEntityManager getContentEntityManager()
-
-