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 BooleanFieldDebugModeEnabledDeprecated.static StringFieldDescriptionDeprecated.static StringFieldHostnameDeprecated.static IdentityFieldIdDeprecated.static RecordMeta<SmtpSettings>METADeprecated.static StringFieldNameDeprecated.static EncodedStringFieldPasswordDeprecated.static IntFieldPortDeprecated.static LongFieldSmtpTimeoutDeprecated.static StringFieldSSLProtocolsDeprecated.static BooleanFieldStartTlsEnabledDeprecated.static StringFieldUsernameDeprecated.static BooleanFieldUseSSLPortDeprecated.-
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.StringgetHostname()Deprecated.java.lang.LonggetId()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.StringgetName()Deprecated.java.lang.StringgetPassword()Deprecated.intgetPort()Deprecated.longgetSmtpTimeout()Deprecated.java.lang.StringgetSslProtocols()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.StringgetUsername()Deprecated.booleanisDebugModeEnabled()Deprecated.booleanisStartTlsEnabled()Deprecated.Use StartTlsbooleanisUseSSLport()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:SRecordInstanceThis 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
metavariable is thus not Serialized, but it would not be anyway as it is usually static.- Specified by:
getMetain 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.
-
-