Uses of Class
de.fhdw.hfw417.dokumentenpostfach.model.benutzer.Mandant
-
Packages that use Mandant Package Description de.fhdw.hfw417.dokumentenpostfach.dto Datentransferobjekte die von dem Dokumenten-Postfach verwendet wurden.de.fhdw.hfw417.dokumentenpostfach.model.benutzer Modell-Objekte bezüglich des Benutzers, die im Postfach verwendet werden.de.fhdw.hfw417.dokumentenpostfach.model.dokument Modell-Objekte bezüglich des Dokuments, die im Postfach verwendet werden.de.fhdw.hfw417.dokumentenpostfach.repository Repository der Modell-Objekte, mittels dieser werden die Objekte persistiert.de.fhdw.hfw417.dokumentenpostfach.service Dienste/Services des Dokumenten-Postfachs. -
-
Uses of Mandant in de.fhdw.hfw417.dokumentenpostfach.dto
Methods in de.fhdw.hfw417.dokumentenpostfach.dto that return types with arguments of type Mandant Modifier and Type Method Description Set<Mandant>
AuthBenutzerDTO. getMandanten()
Method parameters in de.fhdw.hfw417.dokumentenpostfach.dto with type arguments of type Mandant Modifier and Type Method Description void
AuthBenutzerDTO. setMandanten(Set<Mandant> mandantList)
-
Uses of Mandant in de.fhdw.hfw417.dokumentenpostfach.model.benutzer
Methods in de.fhdw.hfw417.dokumentenpostfach.model.benutzer that return Mandant Modifier and Type Method Description Mandant
AbstractBenutzer. getRprsntrndrMandant()
Getter-Methode des repraesentierenden Mandanten.Methods in de.fhdw.hfw417.dokumentenpostfach.model.benutzer that return types with arguments of type Mandant Modifier and Type Method Description Set<Mandant>
AbstractBenutzer. getEmpfngndMandanten()
Getter-Methode der empfangenen Mandanten.Methods in de.fhdw.hfw417.dokumentenpostfach.model.benutzer with parameters of type Mandant Modifier and Type Method Description void
AbstractBenutzer. addEmpfangenderMandant(Mandant mandant)
Fuegt den uebergebenen Mandanten der Liste der empfangenen Mandanten hinzu.boolean
AbstractBenutzer. contains(Mandant mandant)
Prueft, ob der Mandant in der Liste der zu empfangenden Mandanten zu finden ist.void
AktivStatus. deaktivieren(Mandant mandant)
void
InaktivStatus. deaktivieren(Mandant mandant)
void
LebenszyklusStatus. deaktivieren(Mandant mandant)
Setzt den Status auf "Inaktiv".void
AbstractBenutzer. removeEmpfangenderMandant(Mandant mandant)
Entfernt den übergebenen Mandanten aus der Liste der empfangenden Mandanten.void
AbstractBenutzer. setRprsntrndrMandant(Mandant mandant)
Setter-Methode für den repraesentierenden Mandanten.Method parameters in de.fhdw.hfw417.dokumentenpostfach.model.benutzer with type arguments of type Mandant Modifier and Type Method Description void
AbstractBenutzer. addEmpfangendeMandantenSet(Set<Mandant> mandanten)
Fuegt alle Mandanten der Liste der empfangenden Mandanten des Benutzers hinzu.boolean
AbstractBenutzer. containsAllMandanten(List<Mandant> alleMandanten)
Prueft, ob alle Mandanten in der Liste der zu empfangenden Mandanten zu finden sind.void
AbstractBenutzer. removeEmpfangendeMandanten(List<Mandant> mandanten)
Entfernt alle uebergebenen Mandanten aus den empfangenden Mandanten.void
AbstractBenutzer. setMandanten(Set<Mandant> mandanten)
Setter-Methode der empfangenen Mandanten. -
Uses of Mandant in de.fhdw.hfw417.dokumentenpostfach.model.dokument
Methods in de.fhdw.hfw417.dokumentenpostfach.model.dokument that return Mandant Modifier and Type Method Description Mandant
Dokument. getEinsteller()
Methods in de.fhdw.hfw417.dokumentenpostfach.model.dokument with parameters of type Mandant Modifier and Type Method Description void
Dokument. setEinsteller(Mandant einsteller)
Constructors in de.fhdw.hfw417.dokumentenpostfach.model.dokument with parameters of type Mandant Constructor Description Dokument(String identifikation, @NotBlank String dateiPfad, @NotBlank String titel, @NotNull GelesenStatus gelesenStatus, @NotNull InhaltsTyp inhaltsTyp, @NotNull DokumentenTyp dokumentenTyp, Long dateiGroesse, @NotNull LocalDateTime zeitpunkt, Mandant einsteller)
Konstruktor mit allen Dokument-Attributen. -
Uses of Mandant in de.fhdw.hfw417.dokumentenpostfach.repository
Methods in de.fhdw.hfw417.dokumentenpostfach.repository that return types with arguments of type Mandant Modifier and Type Method Description List<Mandant>
MandantenRepository. findAll()
Liefert eine Liste mit allen Mandanten.Optional<Mandant>
MandantenRepository. findByName(String name)
Sucht einen Mandanten anhand seines Namens. -
Uses of Mandant in de.fhdw.hfw417.dokumentenpostfach.service
Methods in de.fhdw.hfw417.dokumentenpostfach.service that return Mandant Modifier and Type Method Description Mandant
MandantService. erstelleMandant(String mandantName)
Erstellt einen Mandanten mit den angegebenen Parametern.Methods in de.fhdw.hfw417.dokumentenpostfach.service that return types with arguments of type Mandant Modifier and Type Method Description List<Mandant>
MandantService. getAllMandanten()
Liefert alle in der Datenbank gespeicherten Mandanten.
-