microsoft.exchange.webservices.data.Param 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="Param.java" company="Microsoft"
* Copyright (c) Microsoft Corporation. All rights reserved.
*
* Defines the Param.java.
**************************************************************************/
package microsoft.exchange.webservices.data;
/**
* The Class Param.
*
* @param
* the generic type
*/
abstract class Param {
/** The param. */
private T param;
/**
* Gets the param.
*
* @return the param
*/
public T getParam() {
return param;
}
/**
* Sets the param.
*
* @param param
* the new param
*/
public void setParam(T param) {
this.param = param;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy