X-Git-Url: https://git.argeo.org/?a=blobdiff_plain;f=security%2Fruntime%2Forg.argeo.security.core%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fsecurity%2FArgeoSecurityDao.java;h=81baa5e2853c1b05792ff5e696207a2b93de43f1;hb=78aeeca8095f9f1f0829cf09930708d6b4be636c;hp=c49b4ccbc437919a633eaa49dd47eec5e28c49a4;hpb=00a5c6cc0b5ed08afba5b34567acd5a4fec4826f;p=lgpl%2Fargeo-commons.git diff --git a/security/runtime/org.argeo.security.core/src/main/java/org/argeo/security/ArgeoSecurityDao.java b/security/runtime/org.argeo.security.core/src/main/java/org/argeo/security/ArgeoSecurityDao.java index c49b4ccbc..81baa5e28 100644 --- a/security/runtime/org.argeo.security.core/src/main/java/org/argeo/security/ArgeoSecurityDao.java +++ b/security/runtime/org.argeo.security.core/src/main/java/org/argeo/security/ArgeoSecurityDao.java @@ -1,27 +1,26 @@ -package org.argeo.security; - -import java.util.List; - -public interface ArgeoSecurityDao { - public ArgeoUser getCurrentUser(); - - public List listUsers(); - - public List listEditableRoles(); - - public void create(ArgeoUser user); +/* + * Copyright (C) 2010 Mathieu Baudier + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ - public void update(ArgeoUser user); - - public void delete(String username); - - public void createRole(String role, String superuserName); - - public void deleteRole(String role); - - public Boolean userExists(String username); +package org.argeo.security; - public ArgeoUser getUser(String username); - public ArgeoUser getUserWithPassword(String username); +/** + * Access to the users and roles referential (dependent from the underlying + * storage, e.g. LDAP). + */ +@Deprecated +public interface ArgeoSecurityDao extends CurrentUserDao,UserAdminDao{ }