blob: baf865c15035958041a654d30812a9b524fe713b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 by SAP AG, Walldorf.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* SAP AG - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.ws.jaxws.dom.runtime.persistence.load;
import org.eclipse.jst.ws.jaxws.dom.runtime.api.IDOM;
public interface IWsDomObtainer
{
/**
* Obtains a {@link IDOM} instance. The implementation may perform a lazy {@link IDOM} load and returns the {@link IDOM} instance via the
* {@link IWsDomCallback} specified
*
* @param loadCallback
* the callback which is notified on {@link IDOM} instance availability
* @see IWsDomCallback#dom(IDOM)
*/
public void getDom(final IWsDomCallback loadCallback);
}