Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

# The size of the library demands a large amount of RAM to build. Increase as necessary if you get GC errors
## linux requires 10G, OSX requires 11G
org.gradle.jvmargs=-XX:MaxPermSize=512m -Xmx11g
org.gradle.jvmargs=-XX:MaxPermSize=512m -Xmx2g

mavenRepoUrl = https://api.bintray.com/maven/microsoftgraph/Maven/microsoft-graph
mavenGroupId = com.microsoft.graph
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,13 +91,11 @@ protected T1 send() throws ClientException {
* Posts this request
*
* @param serializedObject the object to serialize as the body
* @param <T1> the type of the callback result
* @param <T2> the type of the serialized body
* @param <BodyType> the type of the serialized body, some times Action use different body than collection item
* @return the response object
* @throws ClientException an exception occurs if there was an error while the request was sent
*/
@SuppressWarnings("unchecked")
protected <T1, T2> T1 post(final T2 serializedObject) throws ClientException {
protected <BodyType> T1 post(final BodyType serializedObject) throws ClientException {
baseRequest.setHttpMethod(HttpMethod.POST);
return (T1) baseRequest.getClient().getHttpProvider().send(this, responseClass, serializedObject);
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------

package com.microsoft.graph.models.extensions;

import com.microsoft.graph.models.generated.BaseActivityHistoryItem;

/**
* The class for the Activity History Item.
*/
public class ActivityHistoryItem extends BaseActivityHistoryItem {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------

package com.microsoft.graph.models.extensions;

import com.microsoft.graph.models.generated.BaseAppConfigurationSettingItem;

/**
* The class for the App Configuration Setting Item.
*/
public class AppConfigurationSettingItem extends BaseAppConfigurationSettingItem {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------

package com.microsoft.graph.models.extensions;

import com.microsoft.graph.models.generated.BaseAutomaticRepliesMailTips;

/**
* The class for the Automatic Replies Mail Tips.
*/
public class AutomaticRepliesMailTips extends BaseAutomaticRepliesMailTips {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------

package com.microsoft.graph.models.extensions;

import com.microsoft.graph.models.generated.BaseBaseItemVersion;

/**
* The class for the Base Item Version.
*/
public class BaseItemVersion extends BaseBaseItemVersion {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------

package com.microsoft.graph.models.extensions;

import com.microsoft.graph.models.generated.BaseCustomTimeZone;

/**
* The class for the Custom Time Zone.
*/
public class CustomTimeZone extends BaseCustomTimeZone {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------

package com.microsoft.graph.models.extensions;

import com.microsoft.graph.models.generated.BaseDaylightTimeZoneOffset;

/**
* The class for the Daylight Time Zone Offset.
*/
public class DaylightTimeZoneOffset extends BaseDaylightTimeZoneOffset {

}
14 changes: 14 additions & 0 deletions src/main/java/com/microsoft/graph/models/extensions/Directory.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------

package com.microsoft.graph.models.extensions;

import com.microsoft.graph.models.generated.BaseDirectory;

/**
* The class for the Directory.
*/
public class Directory extends BaseDirectory {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------

package com.microsoft.graph.models.extensions;

import com.microsoft.graph.models.generated.BaseDriveItemVersion;

/**
* The class for the Drive Item Version.
*/
public class DriveItemVersion extends BaseDriveItemVersion {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------

package com.microsoft.graph.models.extensions;

import com.microsoft.graph.models.generated.BaseFollowupFlag;

/**
* The class for the Followup Flag.
*/
public class FollowupFlag extends BaseFollowupFlag {

}
14 changes: 14 additions & 0 deletions src/main/java/com/microsoft/graph/models/extensions/ImageInfo.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------

package com.microsoft.graph.models.extensions;

import com.microsoft.graph.models.generated.BaseImageInfo;

/**
* The class for the Image Info.
*/
public class ImageInfo extends BaseImageInfo {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------

package com.microsoft.graph.models.extensions;

import com.microsoft.graph.models.generated.BaseInternetMessageHeader;

/**
* The class for the Internet Message Header.
*/
public class InternetMessageHeader extends BaseInternetMessageHeader {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------

package com.microsoft.graph.models.extensions;

import com.microsoft.graph.models.generated.BaseIosMobileAppConfiguration;

/**
* The class for the Ios Mobile App Configuration.
*/
public class IosMobileAppConfiguration extends BaseIosMobileAppConfiguration {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------

package com.microsoft.graph.models.extensions;

import com.microsoft.graph.models.generated.BaseListItemVersion;

/**
* The class for the List Item Version.
*/
public class ListItemVersion extends BaseListItemVersion {

}
14 changes: 14 additions & 0 deletions src/main/java/com/microsoft/graph/models/extensions/MailTips.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------

package com.microsoft.graph.models.extensions;

import com.microsoft.graph.models.generated.BaseMailTips;

/**
* The class for the Mail Tips.
*/
public class MailTips extends BaseMailTips {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------

package com.microsoft.graph.models.extensions;

import com.microsoft.graph.models.generated.BaseMailTipsError;

/**
* The class for the Mail Tips Error.
*/
public class MailTipsError extends BaseMailTipsError {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------

package com.microsoft.graph.models.extensions;

import com.microsoft.graph.models.generated.BaseManagedDeviceMobileAppConfigurationDeviceStatus;

/**
* The class for the Managed Device Mobile App Configuration Device Status.
*/
public class ManagedDeviceMobileAppConfigurationDeviceStatus extends BaseManagedDeviceMobileAppConfigurationDeviceStatus {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------

package com.microsoft.graph.models.extensions;

import com.microsoft.graph.models.generated.BaseMessageRule;

/**
* The class for the Message Rule.
*/
public class MessageRule extends BaseMessageRule {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------

package com.microsoft.graph.models.extensions;

import com.microsoft.graph.models.generated.BaseMessageRuleActions;

/**
* The class for the Message Rule Actions.
*/
public class MessageRuleActions extends BaseMessageRuleActions {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------

package com.microsoft.graph.models.extensions;

import com.microsoft.graph.models.generated.BaseMessageRulePredicates;

/**
* The class for the Message Rule Predicates.
*/
public class MessageRulePredicates extends BaseMessageRulePredicates {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------

package com.microsoft.graph.models.extensions;

import com.microsoft.graph.models.generated.BaseOnPremisesExtensionAttributes;

/**
* The class for the On Premises Extension Attributes.
*/
public class OnPremisesExtensionAttributes extends BaseOnPremisesExtensionAttributes {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------

package com.microsoft.graph.models.extensions;

import com.microsoft.graph.models.generated.BaseOnPremisesProvisioningError;

/**
* The class for the On Premises Provisioning Error.
*/
public class OnPremisesProvisioningError extends BaseOnPremisesProvisioningError {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------

package com.microsoft.graph.models.extensions;

import com.microsoft.graph.models.generated.BaseOutlookCategory;

/**
* The class for the Outlook Category.
*/
public class OutlookCategory extends BaseOutlookCategory {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------

package com.microsoft.graph.models.extensions;

import com.microsoft.graph.models.generated.BaseOutlookGeoCoordinates;

/**
* The class for the Outlook Geo Coordinates.
*/
public class OutlookGeoCoordinates extends BaseOutlookGeoCoordinates {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------

package com.microsoft.graph.models.extensions;

import com.microsoft.graph.models.generated.BaseOutlookUser;

/**
* The class for the Outlook User.
*/
public class OutlookUser extends BaseOutlookUser {

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------

package com.microsoft.graph.models.extensions;

import com.microsoft.graph.models.generated.BasePrivacyProfile;

/**
* The class for the Privacy Profile.
*/
public class PrivacyProfile extends BasePrivacyProfile {

}
Loading