Class IdentierTypeServiceImpl
- java.lang.Object
-
- de.digitalcollections.cudami.admin.business.impl.service.identifiable.IdentierTypeServiceImpl
-
- All Implemented Interfaces:
IdentifierTypeService
@Service public class IdentierTypeServiceImpl extends java.lang.Object implements IdentifierTypeService
-
-
Field Summary
Fields Modifier and Type Field Description protected de.digitalcollections.cudami.admin.backend.api.repository.identifiable.IdentifierTypeRepositoryrepository
-
Constructor Summary
Constructors Constructor Description IdentierTypeServiceImpl(de.digitalcollections.cudami.admin.backend.api.repository.identifiable.IdentifierTypeRepository repository)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description de.digitalcollections.model.api.identifiable.IdentifierTypecreate()de.digitalcollections.model.api.paging.PageResponse<de.digitalcollections.model.api.identifiable.IdentifierType>find(de.digitalcollections.model.api.paging.PageRequest pageRequest)de.digitalcollections.model.api.identifiable.IdentifierTypeget(java.util.UUID uuid)de.digitalcollections.model.api.identifiable.IdentifierTypesave(de.digitalcollections.model.api.identifiable.IdentifierType identifierType)de.digitalcollections.model.api.identifiable.IdentifierTypeupdate(de.digitalcollections.model.api.identifiable.IdentifierType identifierType)
-
-
-
Method Detail
-
create
public de.digitalcollections.model.api.identifiable.IdentifierType create()
- Specified by:
createin interfaceIdentifierTypeService
-
find
public de.digitalcollections.model.api.paging.PageResponse<de.digitalcollections.model.api.identifiable.IdentifierType> find(de.digitalcollections.model.api.paging.PageRequest pageRequest)
- Specified by:
findin interfaceIdentifierTypeService
-
get
public de.digitalcollections.model.api.identifiable.IdentifierType get(java.util.UUID uuid)
- Specified by:
getin interfaceIdentifierTypeService
-
save
@Transactional(readOnly=false) public de.digitalcollections.model.api.identifiable.IdentifierType save(de.digitalcollections.model.api.identifiable.IdentifierType identifierType)
- Specified by:
savein interfaceIdentifierTypeService
-
update
@Transactional(readOnly=false) public de.digitalcollections.model.api.identifiable.IdentifierType update(de.digitalcollections.model.api.identifiable.IdentifierType identifierType)
- Specified by:
updatein interfaceIdentifierTypeService
-
-