Uses of Class
de.trustable.ca3s.core.domain.AlgorithmRestriction
-
Packages that use AlgorithmRestriction Package Description de.trustable.ca3s.core.domain JPA domain objects.de.trustable.ca3s.core.service Service layer beans.de.trustable.ca3s.core.service.impl de.trustable.ca3s.core.web.rest Spring MVC REST controllers. -
-
Uses of AlgorithmRestriction in de.trustable.ca3s.core.domain
Fields in de.trustable.ca3s.core.domain with type parameters of type AlgorithmRestriction Modifier and Type Field Description static javax.persistence.metamodel.SingularAttribute<AlgorithmRestriction,Boolean>AlgorithmRestriction_. acceptablestatic javax.persistence.metamodel.SetAttribute<Pipeline,AlgorithmRestriction>Pipeline_. algorithmsstatic javax.persistence.metamodel.SingularAttribute<AlgorithmRestriction,Long>AlgorithmRestriction_. idstatic javax.persistence.metamodel.SingularAttribute<AlgorithmRestriction,String>AlgorithmRestriction_. identifierstatic javax.persistence.metamodel.SingularAttribute<AlgorithmRestriction,String>AlgorithmRestriction_. namestatic javax.persistence.metamodel.SingularAttribute<AlgorithmRestriction,Instant>AlgorithmRestriction_. notAfterstatic javax.persistence.metamodel.SetAttribute<AlgorithmRestriction,Pipeline>AlgorithmRestriction_. pipelinesstatic javax.persistence.metamodel.SingularAttribute<AlgorithmRestriction,AlgorithmType>AlgorithmRestriction_. typeMethods in de.trustable.ca3s.core.domain that return AlgorithmRestriction Modifier and Type Method Description AlgorithmRestrictionAlgorithmRestriction. acceptable(Boolean acceptable)AlgorithmRestrictionAlgorithmRestriction. addPipelines(Pipeline pipeline)AlgorithmRestrictionAlgorithmRestriction. id(Long id)AlgorithmRestrictionAlgorithmRestriction. identifier(String identifier)AlgorithmRestrictionAlgorithmRestriction. name(String name)AlgorithmRestrictionAlgorithmRestriction. notAfter(Instant notAfter)AlgorithmRestrictionAlgorithmRestriction. pipelines(Set<Pipeline> pipelines)AlgorithmRestrictionAlgorithmRestriction. removePipelines(Pipeline pipeline)AlgorithmRestrictionAlgorithmRestriction. type(AlgorithmType type)Methods in de.trustable.ca3s.core.domain that return types with arguments of type AlgorithmRestriction Modifier and Type Method Description Set<AlgorithmRestriction>Pipeline. getAlgorithms()Methods in de.trustable.ca3s.core.domain with parameters of type AlgorithmRestriction Modifier and Type Method Description PipelinePipeline. addAlgorithms(AlgorithmRestriction algorithmRestriction)PipelinePipeline. removeAlgorithms(AlgorithmRestriction algorithmRestriction)Method parameters in de.trustable.ca3s.core.domain with type arguments of type AlgorithmRestriction Modifier and Type Method Description PipelinePipeline. algorithms(Set<AlgorithmRestriction> algorithmRestrictions)voidPipeline. setAlgorithms(Set<AlgorithmRestriction> algorithmRestrictions) -
Uses of AlgorithmRestriction in de.trustable.ca3s.core.service
Methods in de.trustable.ca3s.core.service that return AlgorithmRestriction Modifier and Type Method Description AlgorithmRestrictionAlgorithmRestrictionService. save(AlgorithmRestriction algorithmRestriction)Save a algorithmRestriction.Methods in de.trustable.ca3s.core.service that return types with arguments of type AlgorithmRestriction Modifier and Type Method Description List<AlgorithmRestriction>AlgorithmRestrictionService. findAll()Get all the algorithmRestrictions.Optional<AlgorithmRestriction>AlgorithmRestrictionService. findOne(Long id)Get the "id" algorithmRestriction.Optional<AlgorithmRestriction>AlgorithmRestrictionService. partialUpdate(AlgorithmRestriction algorithmRestriction)Partially updates a algorithmRestriction.Methods in de.trustable.ca3s.core.service with parameters of type AlgorithmRestriction Modifier and Type Method Description Optional<AlgorithmRestriction>AlgorithmRestrictionService. partialUpdate(AlgorithmRestriction algorithmRestriction)Partially updates a algorithmRestriction.AlgorithmRestrictionAlgorithmRestrictionService. save(AlgorithmRestriction algorithmRestriction)Save a algorithmRestriction. -
Uses of AlgorithmRestriction in de.trustable.ca3s.core.service.impl
Methods in de.trustable.ca3s.core.service.impl that return AlgorithmRestriction Modifier and Type Method Description AlgorithmRestrictionAlgorithmRestrictionServiceImpl. save(AlgorithmRestriction algorithmRestriction)Methods in de.trustable.ca3s.core.service.impl that return types with arguments of type AlgorithmRestriction Modifier and Type Method Description List<AlgorithmRestriction>AlgorithmRestrictionServiceImpl. findAll()Optional<AlgorithmRestriction>AlgorithmRestrictionServiceImpl. findOne(Long id)Optional<AlgorithmRestriction>AlgorithmRestrictionServiceImpl. partialUpdate(AlgorithmRestriction algorithmRestriction)Methods in de.trustable.ca3s.core.service.impl with parameters of type AlgorithmRestriction Modifier and Type Method Description Optional<AlgorithmRestriction>AlgorithmRestrictionServiceImpl. partialUpdate(AlgorithmRestriction algorithmRestriction)AlgorithmRestrictionAlgorithmRestrictionServiceImpl. save(AlgorithmRestriction algorithmRestriction) -
Uses of AlgorithmRestriction in de.trustable.ca3s.core.web.rest
Methods in de.trustable.ca3s.core.web.rest that return types with arguments of type AlgorithmRestriction Modifier and Type Method Description org.springframework.http.ResponseEntity<AlgorithmRestriction>AlgorithmRestrictionResource. createAlgorithmRestriction(@Valid AlgorithmRestriction algorithmRestriction)POST /algorithm-restrictions: Create a new algorithmRestriction.org.springframework.http.ResponseEntity<AlgorithmRestriction>AlgorithmRestrictionResource. getAlgorithmRestriction(Long id)GET /algorithm-restrictions/:id: get the "id" algorithmRestriction.List<AlgorithmRestriction>AlgorithmRestrictionResource. getAllAlgorithmRestrictions()GET /algorithm-restrictions: get all the algorithmRestrictions.org.springframework.http.ResponseEntity<AlgorithmRestriction>AlgorithmRestrictionResource. updateAlgorithmRestriction(Long id, @Valid AlgorithmRestriction algorithmRestriction)PUT /algorithm-restrictions/:id: Updates an existing algorithmRestriction.Methods in de.trustable.ca3s.core.web.rest with parameters of type AlgorithmRestriction Modifier and Type Method Description org.springframework.http.ResponseEntity<AlgorithmRestriction>AlgorithmRestrictionResource. createAlgorithmRestriction(@Valid AlgorithmRestriction algorithmRestriction)POST /algorithm-restrictions: Create a new algorithmRestriction.org.springframework.http.ResponseEntity<AlgorithmRestriction>AlgorithmRestrictionResource. updateAlgorithmRestriction(Long id, @Valid AlgorithmRestriction algorithmRestriction)PUT /algorithm-restrictions/:id: Updates an existing algorithmRestriction.
-