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

microsoft.exchange.webservices.data.IOwnedProperty 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="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