Package odata.msgraph.client.entity
Class CustomSecurityAttributeDefinition
- java.lang.Object
-
- odata.msgraph.client.entity.Entity
-
- odata.msgraph.client.entity.CustomSecurityAttributeDefinition
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.ODataEntityType,com.github.davidmoten.odata.client.ODataType
public class CustomSecurityAttributeDefinition extends Entity implements com.github.davidmoten.odata.client.ODataEntityType
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCustomSecurityAttributeDefinition.Builder
-
Field Summary
Fields Modifier and Type Field Description protected List<AllowedValue>allowedValuesprotected StringattributeSetprotected Stringdescriptionprotected BooleanisCollectionprotected BooleanisSearchableprotected Stringnameprotected Stringstatusprotected Stringtypeprotected BooleanusePreDefinedValuesOnly-
Fields inherited from class odata.msgraph.client.entity.Entity
changedFields, contextPath, id, odataType, unmappedFields
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedCustomSecurityAttributeDefinition()
-
Method Summary
-
-
-
Field Detail
-
attributeSet
protected String attributeSet
-
description
protected String description
-
isCollection
protected Boolean isCollection
-
isSearchable
protected Boolean isSearchable
-
name
protected String name
-
status
protected String status
-
type
protected String type
-
usePreDefinedValuesOnly
protected Boolean usePreDefinedValuesOnly
-
allowedValues
protected List<AllowedValue> allowedValues
-
-
Method Detail
-
odataTypeName
public String odataTypeName()
- Specified by:
odataTypeNamein interfacecom.github.davidmoten.odata.client.ODataType- Overrides:
odataTypeNamein classEntity
-
builderCustomSecurityAttributeDefinition
public static CustomSecurityAttributeDefinition.Builder builderCustomSecurityAttributeDefinition()
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
-
getChangedFields
public com.github.davidmoten.odata.client.internal.ChangedFields getChangedFields()
- Specified by:
getChangedFieldsin interfacecom.github.davidmoten.odata.client.ODataEntityType- Overrides:
getChangedFieldsin classEntity
-
postInject
public void postInject(boolean addKeysToContextPath)
- Specified by:
postInjectin interfacecom.github.davidmoten.odata.client.ODataType- Overrides:
postInjectin classEntity
-
withAttributeSet
public CustomSecurityAttributeDefinition withAttributeSet(String attributeSet)
-
withDescription
public CustomSecurityAttributeDefinition withDescription(String description)
-
withIsCollection
public CustomSecurityAttributeDefinition withIsCollection(Boolean isCollection)
-
withIsSearchable
public CustomSecurityAttributeDefinition withIsSearchable(Boolean isSearchable)
-
withName
public CustomSecurityAttributeDefinition withName(String name)
-
withStatus
public CustomSecurityAttributeDefinition withStatus(String status)
-
withType
public CustomSecurityAttributeDefinition withType(String type)
-
withUsePreDefinedValuesOnly
public CustomSecurityAttributeDefinition withUsePreDefinedValuesOnly(Boolean usePreDefinedValuesOnly)
-
withUnmappedField
public CustomSecurityAttributeDefinition withUnmappedField(String name, Object value)
- Overrides:
withUnmappedFieldin classEntity
-
getAllowedValues
public AllowedValueCollectionRequest getAllowedValues()
-
withAllowedValues
public CustomSecurityAttributeDefinition withAllowedValues(List<AllowedValue> allowedValues)
-
getUnmappedFields
public com.github.davidmoten.odata.client.UnmappedFields getUnmappedFields()
- Specified by:
getUnmappedFieldsin interfacecom.github.davidmoten.odata.client.ODataType- Overrides:
getUnmappedFieldsin classEntity
-
patch
public CustomSecurityAttributeDefinition patch()
Submits only changed fields for update and returns an immutable copy ofthiswith changed fields reset.
-
put
public CustomSecurityAttributeDefinition put()
Submits all fields for update and returns an immutable copy ofthiswith changed fields reset (they were ignored anyway).
-
-