microsoft.exchange.webservices.data.IFunctionDelegate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of exchange-ws-api Show documentation
Show all versions of exchange-ws-api Show documentation
The source came from http://archive.msdn.microsoft.com/ewsjavaapi
Support for Maven has been added.
/**************************************************************************
* 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