Package de.mid.innovator.srv
Interface SrvContext
-
- All Known Implementing Classes:
ExcellenceModel
,Model
,RepositoryServer
public interface SrvContext
This interface can be used to get specific information about an Innovator repository server. It primarily contains the differences between a model or a server. Every static method that can be found in the so-called helper classes needs to know where the command telegram has to be sent. This means that these methods can be called with an instance ofModel
orRepositoryServer
. Innovator model instances know which server they belong to and do not and, therefore, require an explicit SrvContext.- Author:
- borschet
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
equals(SrvContext obj)
java.lang.String
getCommandSequenceId()
java.lang.String
getCommandSequenceName()
SrvLogin
getLogin()
SrvConnection
getSrvConnection()
-
-
-
Method Detail
-
getSrvConnection
SrvConnection getSrvConnection()
-
getLogin
SrvLogin getLogin()
-
equals
boolean equals(SrvContext obj)
-
getCommandSequenceId
java.lang.String getCommandSequenceId()
-
getCommandSequenceName
java.lang.String getCommandSequenceName()
-
-