|
| 1 | +// Template Source: BaseEntity.java.tt |
| 2 | +// ------------------------------------------------------------------------------ |
| 3 | +// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. |
| 4 | +// ------------------------------------------------------------------------------ |
| 5 | + |
| 6 | +package com.microsoft.graph.models.extensions; |
| 7 | +import com.microsoft.graph.serializer.ISerializer; |
| 8 | +import com.microsoft.graph.serializer.IJsonBackedObject; |
| 9 | +import com.microsoft.graph.serializer.AdditionalDataManager; |
| 10 | +import java.util.EnumSet; |
| 11 | +import com.microsoft.graph.models.extensions.Entity; |
| 12 | + |
| 13 | + |
| 14 | +import com.google.gson.JsonObject; |
| 15 | +import com.google.gson.annotations.SerializedName; |
| 16 | +import com.google.gson.annotations.Expose; |
| 17 | + |
| 18 | +// **NOTE** This file was generated by a tool and any changes will be overwritten. |
| 19 | + |
| 20 | +/** |
| 21 | + * The class for the Application Template. |
| 22 | + */ |
| 23 | +public class ApplicationTemplate extends Entity implements IJsonBackedObject { |
| 24 | + |
| 25 | + |
| 26 | + /** |
| 27 | + * The Categories. |
| 28 | + * The list of categories for the application. Supported values can be: Collaboration, Business Management, Consumer,Content management, CRM, Data services, Developer services, E-commerce, Education, ERP, Finance, Health, Human resources, IT infrastructure, Mail, Management, Marketing, Media, Productivity, Project management, Telecommunications, Tools, Travel, and Web design & hosting. |
| 29 | + */ |
| 30 | + @SerializedName(value = "categories", alternate = {"Categories"}) |
| 31 | + @Expose |
| 32 | + public java.util.List<String> categories; |
| 33 | + |
| 34 | + /** |
| 35 | + * The Description. |
| 36 | + * A description of the application. |
| 37 | + */ |
| 38 | + @SerializedName(value = "description", alternate = {"Description"}) |
| 39 | + @Expose |
| 40 | + public String description; |
| 41 | + |
| 42 | + /** |
| 43 | + * The Display Name. |
| 44 | + * The name of the application. |
| 45 | + */ |
| 46 | + @SerializedName(value = "displayName", alternate = {"DisplayName"}) |
| 47 | + @Expose |
| 48 | + public String displayName; |
| 49 | + |
| 50 | + /** |
| 51 | + * The Home Page Url. |
| 52 | + * The home page URL of the application. |
| 53 | + */ |
| 54 | + @SerializedName(value = "homePageUrl", alternate = {"HomePageUrl"}) |
| 55 | + @Expose |
| 56 | + public String homePageUrl; |
| 57 | + |
| 58 | + /** |
| 59 | + * The Logo Url. |
| 60 | + * The URL to get the logo for this application. |
| 61 | + */ |
| 62 | + @SerializedName(value = "logoUrl", alternate = {"LogoUrl"}) |
| 63 | + @Expose |
| 64 | + public String logoUrl; |
| 65 | + |
| 66 | + /** |
| 67 | + * The Publisher. |
| 68 | + * The name of the publisher for this application. |
| 69 | + */ |
| 70 | + @SerializedName(value = "publisher", alternate = {"Publisher"}) |
| 71 | + @Expose |
| 72 | + public String publisher; |
| 73 | + |
| 74 | + /** |
| 75 | + * The Supported Provisioning Types. |
| 76 | + * The list of provisioning modes supported by this application. The only valid value is sync. |
| 77 | + */ |
| 78 | + @SerializedName(value = "supportedProvisioningTypes", alternate = {"SupportedProvisioningTypes"}) |
| 79 | + @Expose |
| 80 | + public java.util.List<String> supportedProvisioningTypes; |
| 81 | + |
| 82 | + /** |
| 83 | + * The Supported Single Sign On Modes. |
| 84 | + * The list of single sign-on modes supported by this application. The supported values are password, saml, external, and oidc. |
| 85 | + */ |
| 86 | + @SerializedName(value = "supportedSingleSignOnModes", alternate = {"SupportedSingleSignOnModes"}) |
| 87 | + @Expose |
| 88 | + public java.util.List<String> supportedSingleSignOnModes; |
| 89 | + |
| 90 | + |
| 91 | + /** |
| 92 | + * The raw representation of this class |
| 93 | + */ |
| 94 | + private JsonObject rawObject; |
| 95 | + |
| 96 | + /** |
| 97 | + * The serializer |
| 98 | + */ |
| 99 | + private ISerializer serializer; |
| 100 | + |
| 101 | + /** |
| 102 | + * Gets the raw representation of this class |
| 103 | + * |
| 104 | + * @return the raw representation of this class |
| 105 | + */ |
| 106 | + public JsonObject getRawObject() { |
| 107 | + return rawObject; |
| 108 | + } |
| 109 | + |
| 110 | + /** |
| 111 | + * Gets serializer |
| 112 | + * |
| 113 | + * @return the serializer |
| 114 | + */ |
| 115 | + protected ISerializer getSerializer() { |
| 116 | + return serializer; |
| 117 | + } |
| 118 | + |
| 119 | + /** |
| 120 | + * Sets the raw JSON object |
| 121 | + * |
| 122 | + * @param serializer the serializer |
| 123 | + * @param json the JSON object to set this object to |
| 124 | + */ |
| 125 | + public void setRawObject(final ISerializer serializer, final JsonObject json) { |
| 126 | + this.serializer = serializer; |
| 127 | + rawObject = json; |
| 128 | + |
| 129 | + } |
| 130 | +} |
0 commit comments