Class MacOSSystemExtension
- java.lang.Object
-
- odata.msgraph.client.beta.complex.MacOSSystemExtension
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.ODataType
public class MacOSSystemExtension extends Object implements com.github.davidmoten.odata.client.ODataType
“Represents a specific macOS system extension.”
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classMacOSSystemExtension.Builder
-
Field Summary
Fields Modifier and Type Field Description protected StringbundleIdprotected com.github.davidmoten.odata.client.ContextPathcontextPathprotected StringodataTypeprotected StringteamIdentifierprotected com.github.davidmoten.odata.client.internal.UnmappedFieldsImplunmappedFields
-
Constructor Summary
Constructors Modifier Constructor Description protectedMacOSSystemExtension()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MacOSSystemExtension.Builderbuilder()Returns a builder which is used to create a new instance of this class (given that this class is immutable).Optional<String>getBundleId()“Gets or sets the bundle identifier of the system extension.”Optional<String>getTeamIdentifier()“Gets or sets the team identifier that was used to sign the system extension.”com.github.davidmoten.odata.client.UnmappedFieldsgetUnmappedFields()StringodataTypeName()voidpostInject(boolean addKeysToContextPath)StringtoString()MacOSSystemExtensionwithBundleId(String bundleId)Returns an immutable copy ofthiswith just thebundleIdfield changed.MacOSSystemExtensionwithTeamIdentifier(String teamIdentifier)Returns an immutable copy ofthiswith just theteamIdentifierfield changed.MacOSSystemExtensionwithUnmappedField(String name, String value)
-
-
-
Field Detail
-
contextPath
protected com.github.davidmoten.odata.client.ContextPath contextPath
-
unmappedFields
protected com.github.davidmoten.odata.client.internal.UnmappedFieldsImpl unmappedFields
-
odataType
protected String odataType
-
bundleId
protected String bundleId
-
teamIdentifier
protected String teamIdentifier
-
-
Method Detail
-
odataTypeName
public String odataTypeName()
- Specified by:
odataTypeNamein interfacecom.github.davidmoten.odata.client.ODataType
-
getBundleId
public Optional<String> getBundleId()
“Gets or sets the bundle identifier of the system extension.”- Returns:
- property bundleId
-
withBundleId
public MacOSSystemExtension withBundleId(String bundleId)
Returns an immutable copy ofthiswith just thebundleIdfield changed. Field description below. The field name is also added to an internal map of changed fields in the returned object so that whenthis.patch()is called (if available)on the returned object only the changed fields are submitted.“Gets or sets the bundle identifier of the system extension.”
- Parameters:
bundleId- new value ofbundleIdfield (as defined in service metadata)- Returns:
- immutable copy of
thiswith just thebundleIdfield changed
-
getTeamIdentifier
public Optional<String> getTeamIdentifier()
“Gets or sets the team identifier that was used to sign the system extension.”- Returns:
- property teamIdentifier
-
withTeamIdentifier
public MacOSSystemExtension withTeamIdentifier(String teamIdentifier)
Returns an immutable copy ofthiswith just theteamIdentifierfield changed. Field description below. The field name is also added to an internal map of changed fields in the returned object so that whenthis. patch()is called (if available)on the returned object only the changed fields are submitted.“Gets or sets the team identifier that was used to sign the system extension.”
- Parameters:
teamIdentifier- new value ofteamIdentifierfield (as defined in service metadata)- Returns:
- immutable copy of
thiswith just theteamIdentifierfield changed
-
withUnmappedField
public MacOSSystemExtension withUnmappedField(String name, String value)
-
getUnmappedFields
public com.github.davidmoten.odata.client.UnmappedFields getUnmappedFields()
- Specified by:
getUnmappedFieldsin interfacecom.github.davidmoten.odata.client.ODataType
-
postInject
public void postInject(boolean addKeysToContextPath)
- Specified by:
postInjectin interfacecom.github.davidmoten.odata.client.ODataType
-
builder
public static MacOSSystemExtension.Builder builder()
Returns a builder which is used to create a new instance of this class (given that this class is immutable).- Returns:
- a new Builder for this class
-
-