Class SmtpSettings
- java.lang.Object
-
- simpleorm.dataset.SRecordInstance
-
- com.inductiveautomation.ignition.gateway.localdb.persistence.PersistentRecord
-
- com.inductiveautomation.ignition.gateway.smtp.SmtpSettings
-
- All Implemented Interfaces:
java.io.Serializable
@Deprecated public class SmtpSettings extends PersistentRecord
Deprecated.Filename: SmtpSettings.java Created on Jan 15, 2015 Author: Kathy Applebaum Copyright Inductive Automation 2015 Project: SRGateway- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class simpleorm.dataset.SRecordInstance
SRecordInstance.BrokenOptimisticLockException
-
-
Field Summary
Fields Modifier and Type Field Description static BooleanField
DebugModeEnabled
Deprecated.static StringField
Description
Deprecated.static StringField
Hostname
Deprecated.static IdentityField
Id
Deprecated.static RecordMeta<SmtpSettings>
META
Deprecated.static StringField
Name
Deprecated.static EncodedStringField
Password
Deprecated.static IntField
Port
Deprecated.static LongField
SmtpTimeout
Deprecated.static StringField
SSLProtocols
Deprecated.static BooleanField
StartTlsEnabled
Deprecated.static StringField
Username
Deprecated.static BooleanField
UseSSLPort
Deprecated.-
Fields inherited from class com.inductiveautomation.ignition.gateway.localdb.persistence.PersistentRecord
DEFAULT_VALUE, FORM_META_KEY, INDEXED, UNIQUE
-
-
Constructor Summary
Constructors Constructor Description SmtpSettings()
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description java.lang.String
getHostname()
Deprecated.java.lang.Long
getId()
Deprecated.RecordMeta<?>
getMeta()
Deprecated.This must be defined in every user record's definition to access the SRecord which provides the meta data for this instance.java.lang.String
getName()
Deprecated.java.lang.String
getPassword()
Deprecated.int
getPort()
Deprecated.long
getSmtpTimeout()
Deprecated.java.lang.String
getSslProtocols()
Deprecated.The list of protocols is comma separated (to be nicer to users) but needs to be whitespace delimited when actually set on the property.java.lang.String
getUsername()
Deprecated.boolean
isDebugModeEnabled()
Deprecated.boolean
isStartTlsEnabled()
Deprecated.Use StartTlsboolean
isUseSSLport()
Deprecated.Use Ssl/Tls port-
Methods inherited from class com.inductiveautomation.ignition.gateway.localdb.persistence.PersistentRecord
getBoolean, getDoubleObj, getIntObj, getLongObj, getString, installDefaultValues
-
Methods inherited from class simpleorm.dataset.SRecordInstance
allFields, assertNewRow, assertNotNewRow, defineInitialValue, deleteRecord, doQueryRecord, doValidateRecord, equals, findReference, findReference, findReference, findReference, getBigDecimal, getBytes, getDataSet, getDate, getDouble, getEnum, getInitialValue, getInt, getLogger, getLong, getObject, getRawArrayValue, getReferenceNoQuery, getTime, getTimestamp, hashCode, isAttached, isDeleted, isDirty, isDirty, isEmpty, isNewRow, isNotDestroyed, isNull, isReadOnly, isValid, onQueryRecord, onValidateField, onValidateRecord, setBigDecimal, setBoolean, setBytes, setDate, setDirty, setDouble, setEmpty, setEnum, setInt, setLong, setNewRow, setNull, setObject, setObject, setRawArrayValue, setReadOnly, setReference, setString, setTime, setTimestamp, toString, validatePrimaryKeys, wasInCache
-
-
-
-
Field Detail
-
META
public static final RecordMeta<SmtpSettings> META
Deprecated.
-
Id
public static final IdentityField Id
Deprecated.
-
Name
public static final StringField Name
Deprecated.
-
Description
public static final StringField Description
Deprecated.
-
Hostname
public static final StringField Hostname
Deprecated.
-
Port
public static final IntField Port
Deprecated.
-
UseSSLPort
public static final BooleanField UseSSLPort
Deprecated.
-
StartTlsEnabled
public static final BooleanField StartTlsEnabled
Deprecated.
-
Username
public static final StringField Username
Deprecated.
-
Password
public static final EncodedStringField Password
Deprecated.
-
SmtpTimeout
public static final LongField SmtpTimeout
Deprecated.
-
DebugModeEnabled
public static final BooleanField DebugModeEnabled
Deprecated.
-
SSLProtocols
public static final StringField SSLProtocols
Deprecated.
-
-
Method Detail
-
getMeta
public RecordMeta<?> getMeta()
Deprecated.Description copied from class:SRecordInstance
This must be defined in every user record's definition to access the SRecord which provides the meta data for this instance. It is normally defined as:-SRecord getMeta() { return meta; };
The actual
meta
variable is thus not Serialized, but it would not be anyway as it is usually static.- Specified by:
getMeta
in classPersistentRecord
-
getId
public java.lang.Long getId()
Deprecated.
-
getName
public java.lang.String getName()
Deprecated.
-
getHostname
public java.lang.String getHostname()
Deprecated.
-
getPort
public int getPort()
Deprecated.
-
isUseSSLport
public boolean isUseSSLport()
Deprecated.Use Ssl/Tls port
-
isStartTlsEnabled
public boolean isStartTlsEnabled()
Deprecated.Use StartTls
-
getSslProtocols
public java.lang.String getSslProtocols()
Deprecated.The list of protocols is comma separated (to be nicer to users) but needs to be whitespace delimited when actually set on the property.
-
getUsername
public java.lang.String getUsername()
Deprecated.
-
getPassword
public java.lang.String getPassword()
Deprecated.
-
getSmtpTimeout
public long getSmtpTimeout()
Deprecated.
-
isDebugModeEnabled
public boolean isDebugModeEnabled()
Deprecated.
-
-