com.geotab.model.entity.security.SecurityId Maven / Gradle / Ivy
package com.geotab.model.entity.security;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.geotab.model.entity.NameEntityWithVersion;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import lombok.experimental.SuperBuilder;
/**
* For managing security identifiers.
*/
@Getter @Setter
@NoArgsConstructor
@SuperBuilder
public class SecurityId extends NameEntityWithVersion {
/**
* The custom page name.
*/
private String customPageName;
/**
* Indicates whether this securityIdentifier is a system Id or custom identifier.
*/
@JsonProperty("isSystemSecurityId")
private Boolean isSystemSecurityId;
}