org.codehaus.redback.xmlrpc.service.UserService Maven / Gradle / Ivy
package org.codehaus.redback.xmlrpc.service;
/*
* Copyright 2009 The Codehaus.
*
* 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.
*/
import java.util.List;
import java.util.Map;
import org.codehaus.redback.xmlrpc.bean.User;
import com.atlassian.xmlrpc.ServiceObject;
@ServiceObject("UserService")
public interface UserService
extends Service
{
User getUser( String username )
throws Exception;
List getUsers()
throws Exception;
Boolean createUser( String username, String fullname, String email )
throws Exception;
Boolean deleteUser( String username )
throws Exception;
Boolean updateUser( Map userMap )
throws Exception;
Boolean ping()
throws Exception;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy