Class IdentifierTypeServiceImpl
- java.lang.Object
-
- de.digitalcollections.cudami.server.business.impl.service.identifiable.IdentifierTypeServiceImpl
-
- All Implemented Interfaces:
IdentifierTypeService
@Service public class IdentifierTypeServiceImpl extends Object implements IdentifierTypeService
-
-
Field Summary
Fields Modifier and Type Field Description protected IdentifierTypeRepositoryrepository
-
Constructor Summary
Constructors Constructor Description IdentifierTypeServiceImpl(IdentifierTypeRepository repository)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longcount()voiddelete(List<UUID> uuids)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(UUID uuid)de.digitalcollections.model.api.identifiable.IdentifierTypegetByNamespace(String namespace)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 identifiable)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface de.digitalcollections.cudami.server.business.api.service.identifiable.IdentifierTypeService
delete
-
-
-
-
Field Detail
-
repository
protected IdentifierTypeRepository repository
-
-
Constructor Detail
-
IdentifierTypeServiceImpl
@Autowired public IdentifierTypeServiceImpl(IdentifierTypeRepository repository)
-
-
Method Detail
-
count
public long count()
- Specified by:
countin interfaceIdentifierTypeService
-
delete
public void delete(List<UUID> uuids)
- Specified by:
deletein 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(UUID uuid)
- Specified by:
getin interfaceIdentifierTypeService
-
getByNamespace
public de.digitalcollections.model.api.identifiable.IdentifierType getByNamespace(String namespace)
- Specified by:
getByNamespacein interfaceIdentifierTypeService
-
save
public de.digitalcollections.model.api.identifiable.IdentifierType save(de.digitalcollections.model.api.identifiable.IdentifierType identifierType)
- Specified by:
savein interfaceIdentifierTypeService
-
update
public de.digitalcollections.model.api.identifiable.IdentifierType update(de.digitalcollections.model.api.identifiable.IdentifierType identifiable)
- Specified by:
updatein interfaceIdentifierTypeService
-
-