nl.vpro.domain.user.OrganizationService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of user-domain Show documentation
Show all versions of user-domain Show documentation
Domain classes and interfaces related to accountability, users and organizations.
/*
* Copyright (C) 2012 Licensed under the Apache License, Version 2.0
* VPRO The Netherlands
*/
package nl.vpro.domain.user;
import java.util.List;
public interface OrganizationService {
/**
* Finds the organization by its main id
*
* @return null
if not found
*/
T find(String id);
List findAll();
default T update(T organization) {
throw new UnsupportedOperationException();
}
default void delete(T organization) {
throw new UnsupportedOperationException();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy