All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nl.vpro.domain.user.OrganizationService Maven / Gradle / Ivy

Go to download

Domain classes and interfaces related to accountability, users and organizations.

There is a newer version: 8.3.1
Show newest version
/*
 * 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