Package systems.dmx.core.service
Class Migration
- java.lang.Object
-
- systems.dmx.core.service.Migration
-
- Direct Known Subclasses:
Migration1
,Migration2
,Migration2
,Migration2
,Migration2
,Migration2
,Migration3
,Migration3
,Migration3
,Migration3
,Migration4
,Migration4
,Migration4
,Migration4
,Migration5
,Migration5
,Migration5
,Migration6
,Migration6
,Migration7
public abstract class Migration extends Object
-
-
Field Summary
Fields Modifier and Type Field Description protected CoreService
dmx
protected ModelFactory
mf
-
Constructor Summary
Constructors Constructor Description Migration()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract void
run()
protected void
setAssocTypeViewConfigValue(String assocTypeUri, String setting, Object value)
Convenience method for plugin authors to set a Webclient view config value for a certain assoc type.void
setCoreService(CoreService dmx)
protected void
setTopicTypeViewConfigValue(String topicTypeUri, String setting, Object value)
Convenience method for plugin authors to set a Webclient view config value for a certain topic type.
-
-
-
Field Detail
-
dmx
protected CoreService dmx
-
mf
protected ModelFactory mf
-
-
Method Detail
-
setCoreService
public void setCoreService(CoreService dmx)
-
run
public abstract void run()
-
setTopicTypeViewConfigValue
protected final void setTopicTypeViewConfigValue(String topicTypeUri, String setting, Object value)
Convenience method for plugin authors to set a Webclient view config value for a certain topic type.- Parameters:
topicTypeUri
- The URI of the topic type whose view configuration value to set.setting
- Last component of the child type URI whose value to set, e.g. "icon".value
- The config value (String, Integer, Long, Double, or Boolean).
-
setAssocTypeViewConfigValue
protected final void setAssocTypeViewConfigValue(String assocTypeUri, String setting, Object value)
Convenience method for plugin authors to set a Webclient view config value for a certain assoc type.- Parameters:
assocTypeUri
- The URI of the assoc type whose view configuration value to set.setting
- Last component of the child type URI whose value to set, e.g. "color".value
- The config value (String, Integer, Long, Double, or Boolean).
-
-