microsoft.exchange.webservices.data.IOwnedProperty 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="IOwnedProperty.java" company="Microsoft"
* Copyright (c) Microsoft Corporation. All rights reserved.
*
* Defines the IOwnedProperty.java.
**************************************************************************/
package microsoft.exchange.webservices.data;
/***
* Complex properties that implement that interface are owned by an instance of
* EwsObject. For this reason, they also cannot be shared.
*
*/
interface IOwnedProperty {
/***
* Gets the owner.
*
* @return The owner.
*/
ServiceObject getOwner();
/***
* Sets the owner.
*
* @param obj
* The owner.
*/
void setOwner(ServiceObject obj);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy