Uses of Class
de.trustable.ca3s.core.domain.Tenant
-
Packages that use Tenant Package Description de.trustable.ca3s.core.domain JPA domain objects.de.trustable.ca3s.core.repository Spring Data JPA repositories.de.trustable.ca3s.core.service Service layer beans.de.trustable.ca3s.core.service.dto Data Transfer Objects.de.trustable.ca3s.core.service.impl de.trustable.ca3s.core.web.rest Spring MVC REST controllers. -
-
Uses of Tenant in de.trustable.ca3s.core.domain
Fields in de.trustable.ca3s.core.domain with type parameters of type Tenant Modifier and Type Field Description static javax.persistence.metamodel.SingularAttribute<Tenant,Boolean>Tenant_. activestatic javax.persistence.metamodel.SingularAttribute<Tenant,Long>Tenant_. idstatic javax.persistence.metamodel.SingularAttribute<Tenant,String>Tenant_. longnamestatic javax.persistence.metamodel.SingularAttribute<Tenant,String>Tenant_. namestatic javax.persistence.metamodel.SetAttribute<Tenant,Pipeline>Tenant_. pipelinesstatic javax.persistence.metamodel.SingularAttribute<Certificate,Tenant>Certificate_. tenantstatic javax.persistence.metamodel.SingularAttribute<CSR,Tenant>CSR_. tenantstatic javax.persistence.metamodel.SingularAttribute<User,Tenant>User_. tenantstatic javax.persistence.metamodel.SetAttribute<Pipeline,Tenant>Pipeline_. tenantsMethods in de.trustable.ca3s.core.domain that return Tenant Modifier and Type Method Description TenantTenant. active(Boolean active)TenantTenant. addPipelines(Pipeline pipeline)TenantCertificate. getTenant()TenantCSR. getTenant()TenantUser. getTenant()TenantTenant. id(Long id)TenantTenant. longname(String longname)TenantTenant. name(String name)TenantTenant. pipelines(Set<Pipeline> pipelines)TenantTenant. removePipelines(Pipeline pipeline)Methods in de.trustable.ca3s.core.domain that return types with arguments of type Tenant Modifier and Type Method Description Set<Tenant>Pipeline. getTenants()Methods in de.trustable.ca3s.core.domain with parameters of type Tenant Modifier and Type Method Description PipelinePipeline. addTenants(Tenant tenant)PipelinePipeline. removeTenants(Tenant tenant)voidCertificate. setTenant(Tenant tenant)voidCSR. setTenant(Tenant tenant)voidUser. setTenant(Tenant tenant)CertificateCertificate. tenant(Tenant tenant)CSRCSR. tenant(Tenant tenant)UserUser. tenant(Tenant tenant)Method parameters in de.trustable.ca3s.core.domain with type arguments of type Tenant Modifier and Type Method Description voidPipeline. setTenants(Set<Tenant> tenants)PipelinePipeline. tenants(Set<Tenant> tenants) -
Uses of Tenant in de.trustable.ca3s.core.repository
Methods in de.trustable.ca3s.core.repository that return types with arguments of type Tenant Modifier and Type Method Description Optional<Tenant>TenantRepository. findByName(String name) -
Uses of Tenant in de.trustable.ca3s.core.service
Methods in de.trustable.ca3s.core.service that return Tenant Modifier and Type Method Description TenantTenantService. save(Tenant tenant)Save a tenant.TenantTenantService. update(Tenant tenant)Updates a tenant.Methods in de.trustable.ca3s.core.service that return types with arguments of type Tenant Modifier and Type Method Description List<Tenant>TenantService. findAll()Get all the tenants.Optional<Tenant>TenantService. findOne(Long id)Get the "id" tenant.Optional<Tenant>TenantService. partialUpdate(Tenant tenant)Partially updates a tenant.Methods in de.trustable.ca3s.core.service with parameters of type Tenant Modifier and Type Method Description Optional<Tenant>TenantService. partialUpdate(Tenant tenant)Partially updates a tenant.TenantTenantService. save(Tenant tenant)Save a tenant.TenantTenantService. update(Tenant tenant)Updates a tenant. -
Uses of Tenant in de.trustable.ca3s.core.service.dto
Methods in de.trustable.ca3s.core.service.dto that return Tenant Modifier and Type Method Description Tenant[]PipelineView. getAllTenantList()Tenant[]PipelineView. getSelectedTenantList()Methods in de.trustable.ca3s.core.service.dto with parameters of type Tenant Modifier and Type Method Description voidPipelineView. setAllTenantList(Tenant[] allTenantList)voidPipelineView. setSelectedTenantList(Tenant[] selectedTenantList) -
Uses of Tenant in de.trustable.ca3s.core.service.impl
Methods in de.trustable.ca3s.core.service.impl that return Tenant Modifier and Type Method Description TenantTenantServiceImpl. save(Tenant tenant)TenantTenantServiceImpl. update(Tenant tenant)Methods in de.trustable.ca3s.core.service.impl that return types with arguments of type Tenant Modifier and Type Method Description List<Tenant>TenantServiceImpl. findAll()Optional<Tenant>TenantServiceImpl. findOne(Long id)Optional<Tenant>TenantServiceImpl. partialUpdate(Tenant tenant)Methods in de.trustable.ca3s.core.service.impl with parameters of type Tenant Modifier and Type Method Description Optional<Tenant>TenantServiceImpl. partialUpdate(Tenant tenant)TenantTenantServiceImpl. save(Tenant tenant)TenantTenantServiceImpl. update(Tenant tenant) -
Uses of Tenant in de.trustable.ca3s.core.web.rest
Methods in de.trustable.ca3s.core.web.rest that return types with arguments of type Tenant Modifier and Type Method Description org.springframework.http.ResponseEntity<Tenant>TenantResource. createTenant(@Valid Tenant tenant)POST /tenants: Create a new tenant.List<Tenant>TenantResource. getAllTenants()GET /tenants: get all the tenants.org.springframework.http.ResponseEntity<Tenant>TenantResource. getTenant(Long id)GET /tenants/:id: get the "id" tenant.org.springframework.http.ResponseEntity<Tenant>TenantResource. partialUpdateTenant(Long id, @NotNull Tenant tenant)PATCH /tenants/:id: Partial updates given fields of an existing tenant, field will ignore if it is nullorg.springframework.http.ResponseEntity<Tenant>TenantResource. updateTenant(Long id, @Valid Tenant tenant)PUT /tenants/:id: Updates an existing tenant.Methods in de.trustable.ca3s.core.web.rest with parameters of type Tenant Modifier and Type Method Description org.springframework.http.ResponseEntity<Tenant>TenantResource. createTenant(@Valid Tenant tenant)POST /tenants: Create a new tenant.org.springframework.http.ResponseEntity<Tenant>TenantResource. partialUpdateTenant(Long id, @NotNull Tenant tenant)PATCH /tenants/:id: Partial updates given fields of an existing tenant, field will ignore if it is nullorg.springframework.http.ResponseEntity<Tenant>TenantResource. updateTenant(Long id, @Valid Tenant tenant)PUT /tenants/:id: Updates an existing tenant.
-