com.citrix.sharefile.api.models.SFMobileSecuritySettings Maven / Gradle / Ivy
// ------------------------------------------------------------------------------
//
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
//
// Copyright (c) 2017 Citrix ShareFile. All rights reserved.
//
// ------------------------------------------------------------------------------
package com.citrix.sharefile.api.models;
import java.io.InputStream;
import java.util.ArrayList;
import java.net.URI;
import java.util.Date;
import java.util.Map;
import java.util.HashMap;
import com.google.gson.annotations.SerializedName;
import com.citrix.sharefile.api.*;
import com.citrix.sharefile.api.enumerations.*;
import com.citrix.sharefile.api.models.*;
public class SFMobileSecuritySettings extends SFODataObject {
@SerializedName("PoisonPillInterval")
private Integer PoisonPillInterval;
@SerializedName("EnableOpenExternal")
private Boolean EnableOpenExternal;
@SerializedName("EnableOfflineCache")
private Boolean EnableOfflineCache;
@SerializedName("EnableAutoLogin")
private Boolean EnableAutoLogin;
@SerializedName("RestrictModifiedDevices")
private Boolean RestrictModifiedDevices;
@SerializedName("PinLockType")
private SFSafeEnum PinLockType;
@SerializedName("PinLockMaxAttempts")
private Integer PinLockMaxAttempts;
@SerializedName("PinLockLockoutIntervalSeconds")
private Integer PinLockLockoutIntervalSeconds;
@SerializedName("PinLockExternalActionGraceIntervalSeconds")
private Integer PinLockExternalActionGraceIntervalSeconds;
@SerializedName("PinLockInternalActionGraceIntervalSeconds")
private Integer PinLockInternalActionGraceIntervalSeconds;
public Integer getPoisonPillInterval() {
return this.PoisonPillInterval;
}
public void setPoisonPillInterval(Integer poisonpillinterval) {
this.PoisonPillInterval = poisonpillinterval;
}
public Boolean getEnableOpenExternal() {
return this.EnableOpenExternal;
}
public void setEnableOpenExternal(Boolean enableopenexternal) {
this.EnableOpenExternal = enableopenexternal;
}
public Boolean getEnableOfflineCache() {
return this.EnableOfflineCache;
}
public void setEnableOfflineCache(Boolean enableofflinecache) {
this.EnableOfflineCache = enableofflinecache;
}
public Boolean getEnableAutoLogin() {
return this.EnableAutoLogin;
}
public void setEnableAutoLogin(Boolean enableautologin) {
this.EnableAutoLogin = enableautologin;
}
public Boolean getRestrictModifiedDevices() {
return this.RestrictModifiedDevices;
}
public void setRestrictModifiedDevices(Boolean restrictmodifieddevices) {
this.RestrictModifiedDevices = restrictmodifieddevices;
}
public SFSafeEnum getPinLockType() {
return this.PinLockType;
}
public void setPinLockType(SFSafeEnum pinlocktype) {
this.PinLockType = pinlocktype;
}
public Integer getPinLockMaxAttempts() {
return this.PinLockMaxAttempts;
}
public void setPinLockMaxAttempts(Integer pinlockmaxattempts) {
this.PinLockMaxAttempts = pinlockmaxattempts;
}
public Integer getPinLockLockoutIntervalSeconds() {
return this.PinLockLockoutIntervalSeconds;
}
public void setPinLockLockoutIntervalSeconds(Integer pinlocklockoutintervalseconds) {
this.PinLockLockoutIntervalSeconds = pinlocklockoutintervalseconds;
}
public Integer getPinLockExternalActionGraceIntervalSeconds() {
return this.PinLockExternalActionGraceIntervalSeconds;
}
public void setPinLockExternalActionGraceIntervalSeconds(Integer pinlockexternalactiongraceintervalseconds) {
this.PinLockExternalActionGraceIntervalSeconds = pinlockexternalactiongraceintervalseconds;
}
public Integer getPinLockInternalActionGraceIntervalSeconds() {
return this.PinLockInternalActionGraceIntervalSeconds;
}
public void setPinLockInternalActionGraceIntervalSeconds(Integer pinlockinternalactiongraceintervalseconds) {
this.PinLockInternalActionGraceIntervalSeconds = pinlockinternalactiongraceintervalseconds;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy