odata.msgraph.client.entity.MobileAppAssignment Maven / Gradle / Ivy
Show all versions of odata-client-msgraph Show documentation
package odata.msgraph.client.entity;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.github.davidmoten.odata.client.ClientException;
import com.github.davidmoten.odata.client.NameValue;
import com.github.davidmoten.odata.client.ODataEntityType;
import com.github.davidmoten.odata.client.RequestOptions;
import com.github.davidmoten.odata.client.UnmappedFields;
import com.github.davidmoten.odata.client.Util;
import com.github.davidmoten.odata.client.annotation.Property;
import com.github.davidmoten.odata.client.internal.ChangedFields;
import com.github.davidmoten.odata.client.internal.RequestHelper;
import com.github.davidmoten.odata.client.internal.UnmappedFieldsImpl;
import java.lang.Object;
import java.lang.Override;
import java.lang.String;
import java.lang.StringBuilder;
import java.util.Optional;
import odata.msgraph.client.complex.DeviceAndAppManagementAssignmentTarget;
import odata.msgraph.client.complex.MobileAppAssignmentSettings;
import odata.msgraph.client.enums.InstallIntent;
/**
* “A class containing the properties used for Group Assignment of a Mobile App.”
*/@JsonPropertyOrder({
"@odata.type",
"intent",
"settings",
"target"})
@JsonInclude(Include.NON_NULL)
public class MobileAppAssignment extends Entity implements ODataEntityType {
@Override
public String odataTypeName() {
return "microsoft.graph.mobileAppAssignment";
}
@JsonProperty("intent")
protected InstallIntent intent;
@JsonProperty("settings")
protected MobileAppAssignmentSettings settings;
@JsonProperty("target")
protected DeviceAndAppManagementAssignmentTarget target;
protected MobileAppAssignment() {
super();
}
/**
* Returns a builder which is used to create a new
* instance of this class (given that this class is immutable).
*
* @return a new Builder for this class
*/
// Suffix used on builder factory method to differentiate the method
// from static builder methods on superclasses
public static Builder builderMobileAppAssignment() {
return new Builder();
}
public static final class Builder {
private String id;
private InstallIntent intent;
private MobileAppAssignmentSettings settings;
private DeviceAndAppManagementAssignmentTarget target;
private ChangedFields changedFields = ChangedFields.EMPTY;
Builder() {
// prevent instantiation
}
public Builder id(String id) {
this.id = id;
this.changedFields = changedFields.add("id");
return this;
}
/**
* “The install intent defined by the admin.”
*
* @param intent
* value of {@code intent} property (as defined in service metadata)
* @return {@code this} (for method chaining)
*/
public Builder intent(InstallIntent intent) {
this.intent = intent;
this.changedFields = changedFields.add("intent");
return this;
}
/**
* “The settings for target assignment defined by the admin.”
*
* @param settings
* value of {@code settings} property (as defined in service metadata)
* @return {@code this} (for method chaining)
*/
public Builder settings(MobileAppAssignmentSettings settings) {
this.settings = settings;
this.changedFields = changedFields.add("settings");
return this;
}
/**
* “The target group assignment defined by the admin.”
*
* @param target
* value of {@code target} property (as defined in service metadata)
* @return {@code this} (for method chaining)
*/
public Builder target(DeviceAndAppManagementAssignmentTarget target) {
this.target = target;
this.changedFields = changedFields.add("target");
return this;
}
public MobileAppAssignment build() {
MobileAppAssignment _x = new MobileAppAssignment();
_x.contextPath = null;
_x.changedFields = changedFields;
_x.unmappedFields = new UnmappedFieldsImpl();
_x.odataType = "microsoft.graph.mobileAppAssignment";
_x.id = id;
_x.intent = intent;
_x.settings = settings;
_x.target = target;
return _x;
}
}
@Override
@JsonIgnore
public ChangedFields getChangedFields() {
return changedFields;
}
@Override
public void postInject(boolean addKeysToContextPath) {
if (addKeysToContextPath && id != null) {
contextPath = contextPath.clearQueries().addKeys(new NameValue(id, String.class));
}
}
/**
* “The install intent defined by the admin.”
*
* @return property intent
*/
@Property(name="intent")
@JsonIgnore
public Optional getIntent() {
return Optional.ofNullable(intent);
}
/**
* Returns an immutable copy of {@code this} with just the {@code intent} field
* changed. Field description below. The field name is also added to an internal
* map of changed fields in the returned object so that when {@code this.patch()}
* is called (if available)on the returned object only the changed fields are
* submitted.
*
* “The install intent defined by the admin.”
*
* @param intent
* new value of {@code intent} field (as defined in service metadata)
* @return immutable copy of {@code this} with just the {@code intent} field changed
*/
public MobileAppAssignment withIntent(InstallIntent intent) {
MobileAppAssignment _x = _copy();
_x.changedFields = changedFields.add("intent");
_x.odataType = Util.nvl(odataType, "microsoft.graph.mobileAppAssignment");
_x.intent = intent;
return _x;
}
/**
* “The settings for target assignment defined by the admin.”
*
* @return property settings
*/
@Property(name="settings")
@JsonIgnore
public Optional getSettings() {
return Optional.ofNullable(settings);
}
/**
* Returns an immutable copy of {@code this} with just the {@code settings} field
* changed. Field description below. The field name is also added to an internal
* map of changed fields in the returned object so that when {@code this.patch()}
* is called (if available)on the returned object only the changed fields are
* submitted.
*
* “The settings for target assignment defined by the admin.”
*
* @param settings
* new value of {@code settings} field (as defined in service metadata)
* @return immutable copy of {@code this} with just the {@code settings} field changed
*/
public MobileAppAssignment withSettings(MobileAppAssignmentSettings settings) {
MobileAppAssignment _x = _copy();
_x.changedFields = changedFields.add("settings");
_x.odataType = Util.nvl(odataType, "microsoft.graph.mobileAppAssignment");
_x.settings = settings;
return _x;
}
/**
* “The target group assignment defined by the admin.”
*
* @return property target
*/
@Property(name="target")
@JsonIgnore
public Optional getTarget() {
return Optional.ofNullable(target);
}
/**
* Returns an immutable copy of {@code this} with just the {@code target} field
* changed. Field description below. The field name is also added to an internal
* map of changed fields in the returned object so that when {@code this.patch()}
* is called (if available)on the returned object only the changed fields are
* submitted.
*
* “The target group assignment defined by the admin.”
*
* @param target
* new value of {@code target} field (as defined in service metadata)
* @return immutable copy of {@code this} with just the {@code target} field changed
*/
public MobileAppAssignment withTarget(DeviceAndAppManagementAssignmentTarget target) {
MobileAppAssignment _x = _copy();
_x.changedFields = changedFields.add("target");
_x.odataType = Util.nvl(odataType, "microsoft.graph.mobileAppAssignment");
_x.target = target;
return _x;
}
public MobileAppAssignment withUnmappedField(String name, Object value) {
MobileAppAssignment _x = _copy();
_x.setUnmappedField(name, value);
return _x;
}
@JsonAnySetter
private void setUnmappedField(String name, Object value) {
if (unmappedFields == null) {
unmappedFields = new UnmappedFieldsImpl();
}
unmappedFields.put(name, value);
}
@JsonAnyGetter
private UnmappedFieldsImpl unmappedFields() {
return unmappedFields == null ? UnmappedFieldsImpl.EMPTY : unmappedFields;
}
@Override
public UnmappedFields getUnmappedFields() {
return unmappedFields();
}
/**
* Submits only changed fields for update and returns an
* immutable copy of {@code this} with changed fields reset.
*
* @return a copy of {@code this} with changed fields reset
* @throws ClientException if HTTP response is not as expected
*/
public MobileAppAssignment patch() {
RequestHelper.patch(this, contextPath, RequestOptions.EMPTY);
MobileAppAssignment _x = _copy();
_x.changedFields = null;
return _x;
}
/**
* Submits all fields for update and returns an immutable copy of {@code this}
* with changed fields reset (they were ignored anyway).
*
* @return a copy of {@code this} with changed fields reset
* @throws ClientException if HTTP response is not as expected
*/
public MobileAppAssignment put() {
RequestHelper.put(this, contextPath, RequestOptions.EMPTY);
MobileAppAssignment _x = _copy();
_x.changedFields = null;
return _x;
}
private MobileAppAssignment _copy() {
MobileAppAssignment _x = new MobileAppAssignment();
_x.contextPath = contextPath;
_x.changedFields = changedFields;
_x.unmappedFields = unmappedFields.copy();
_x.odataType = odataType;
_x.id = id;
_x.intent = intent;
_x.settings = settings;
_x.target = target;
return _x;
}
@Override
public String toString() {
StringBuilder b = new StringBuilder();
b.append("MobileAppAssignment[");
b.append("id=");
b.append(this.id);
b.append(", ");
b.append("intent=");
b.append(this.intent);
b.append(", ");
b.append("settings=");
b.append(this.settings);
b.append(", ");
b.append("target=");
b.append(this.target);
b.append("]");
b.append(",unmappedFields=");
b.append(unmappedFields);
b.append(",odataType=");
b.append(odataType);
return b.toString();
}
}