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

microsoft.exchange.webservices.data.IFunctionDelegate Maven / Gradle / Ivy

Go to download

The source came from http://archive.msdn.microsoft.com/ewsjavaapi Support for Maven has been added.

There is a newer version: 1.1.5.2
Show newest version
/**************************************************************************
 * copyright file="IFunctionDelegate.java" company="Microsoft"
 *     Copyright (c) Microsoft Corporation.  All rights reserved.
 * 
 * Defines the IFunctionDelegate.java.
 **************************************************************************/
package microsoft.exchange.webservices.data;

import java.io.IOException;
import java.net.URI;
import java.util.List;

import javax.xml.stream.XMLStreamException;

/**
 * The Interface FuncDelegateInterface.
 * 
 * @param 
 *            the generic type
 * @param 
 *            the generic type
 * @param 
 *            the generic type
 * @param 
 *            the generic type
 */
interface IFunctionDelegate {

	/**
	 * Func.
	 * 
	 * @param arg1
	 *            the arg1
	 * @param arg2
	 *            the arg2
	 * @param arg3
	 *            the arg3
	 * @return the t result
	 * @throws AutodiscoverLocalException
	 *             the autodiscover local exception
	 * @throws XMLStreamException
	 *             the xML stream exception
	 * @throws IOException
	 *             Signals that an I/O exception has occurred.
	 * @throws ServiceLocalException
	 *             the service local exception
	 * @throws Exception
	 *             the exception
	 */
    TResult func(T1 arg1, T2 arg2, T3 arg3, T4 arg4)
        throws AutodiscoverLocalException, XMLStreamException, IOException,
			ServiceLocalException, Exception;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy