/* * Copyright (C) 2004-2008 Jive Software. All rights reserved. * * 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. */ package org.jivesoftware.openfire.vcard; import org.dom4j.Element; import org.jivesoftware.util.AlreadyExistsException; import org.jivesoftware.util.NotFoundException; /** * Provider interface for users vcards. * * @author Gaston Dombiak */ public interface VCardProvider { /** * Loads the specified user vcard by username. Returns <tt>null</tt> if no * vCard was found for the specified username. * * @param username the username * @return the vCard as an DOM element or <tt>null</tt> if none was found. */ Element loadVCard(String username); /** * Creates and saves the new user vcard. This method should throw an * UnsupportedOperationException if this operation is not supported by * the backend vcard store. * * The method is expected to return the vCard after it has had a chance * to make any modifications to it that it needed to. In many cases, this * may be a simple return of the passed in vCard. This change was made in 3.4.4. * * @param username the username. * @param vCardElement the vCard to save. * @return vCard as it is after the provider has a chance to adjust it. * @throws AlreadyExistsException if the user already has a vCard. * @throws UnsupportedOperationException if the provider does not support the * operation. */ Element createVCard(String username, Element vCardElement) throws AlreadyExistsException; /** * Updates the user vcard in the backend store. This method should throw an * UnsupportedOperationException if this operation is not supported by * the backend vcard store. * * The method is expected to return the vCard after it has had a chance * to make any modifications to it that it needed to. In many cases, this * may be a simple return of the passed in vCard. This change was made in 3.4.4. * * @param username the username. * @param vCardElement the vCard to save. * @return vCard as it is after the provider has a chance to adjust it. * @throws NotFoundException if the vCard to update does not exist. * @throws UnsupportedOperationException if the provider does not support the * operation. */ Element updateVCard(String username, Element vCardElement) throws NotFoundException; /** * Delets a user vcard. This method should throw an UnsupportedOperationException * if this operation is not supported by the backend vcard store. * * @param username the username to delete. * @throws UnsupportedOperationException if the provider does not support the * operation. */ void deleteVCard(String username); /** * Returns true if this VCardProvider is read-only. When read-only, * vcards can not be created, deleted, or modified. * * @return true if the vcard provider is read-only. */ boolean isReadOnly(); }