Uses of Class
com.smeup.kokos.sdk.entity.model.AbstractEntity
Packages that use AbstractEntity
Package
Description
-
Uses of AbstractEntity in com.smeup.kokos.sdk.entity
Methods in com.smeup.kokos.sdk.entity with type parameters of type AbstractEntityModifier and TypeMethodDescription<T extends AbstractEntity>
EntityRepository<T> EntityManager.getRepository(Class<T> entityClass) Returns the repository registered for the given entity class.<T extends AbstractEntity>
EntityManagerConfigEntityManagerConfig.register(Class<T> entityClass, EntityRepository<T> repository) Explicitly registers a repository instance for the given entity class.Methods in com.smeup.kokos.sdk.entity that return types with arguments of type AbstractEntityModifier and TypeMethodDescriptionSet<Class<? extends AbstractEntity>> EntityManager.getRegisteredEntityClasses()Returns the set of all entity classes that have a registered repository. -
Uses of AbstractEntity in com.smeup.kokos.sdk.entity.model
Method parameters in com.smeup.kokos.sdk.entity.model with type arguments of type AbstractEntityModifier and TypeMethodDescriptionAbstractEntity.getOavFields(Class<? extends AbstractEntity> entityClass, boolean includeId) Gets back the list of fields annotated with @SmeupOav for the given entity class, optionally including those also annotated with @Id.static List<OavDescriptor> AbstractEntity.getOavs(Class<? extends AbstractEntity> entityClass) -
Uses of AbstractEntity in com.smeup.kokos.sdk.entity.model.builder
Classes in com.smeup.kokos.sdk.entity.model.builder with type parameters of type AbstractEntity -
Uses of AbstractEntity in com.smeup.kokos.sdk.entity.repository
Classes in com.smeup.kokos.sdk.entity.repository with type parameters of type AbstractEntityModifier and TypeInterfaceDescriptioninterfaceEntityRepository<T extends AbstractEntity>The interface of generic repository for entities.Method parameters in com.smeup.kokos.sdk.entity.repository with type arguments of type AbstractEntityModifier and TypeMethodDescriptiondefault List<OavDescriptor> EntityRepository.describeOavs(Class<? extends AbstractEntity> entityClass) -
Uses of AbstractEntity in com.smeup.kokos.service.utils
Methods in com.smeup.kokos.service.utils that return types with arguments of type AbstractEntityModifier and TypeMethodDescriptionClass<? extends AbstractEntity> EntityServiceSupport.ClassAndRepository.entityClass()Returns the value of theentityClassrecord component.static Iterator<AbstractEntity> EntityServiceSupport.findAll(EntityRepository<?> repository) Returns an iterator over all entities in the given repository.static Optional<AbstractEntity> EntityServiceSupport.findById(EntityRepository<?> repository, String id) Finds an entity by id using the provided repository, suppressing unchecked warningsstatic Class<? extends AbstractEntity> EntityServiceSupport.resolveEntityClass(String entityType, String entityParameter) Resolves the entity class registered for the given Smeup type and parameter.Constructor parameters in com.smeup.kokos.service.utils with type arguments of type AbstractEntityModifierConstructorDescriptionClassAndRepository(Class<? extends AbstractEntity> entityClass, EntityRepository<?> repository) Creates an instance of aClassAndRepositoryrecord class.