10 lines
265 B
Java
10 lines
265 B
Java
package com.tridium.orion;
|
|
|
|
public interface ISchemaUpgrader {
|
|
BSchemaVersion getFromVersion();
|
|
|
|
BSchemaVersion getToVersion();
|
|
|
|
void upgrade(BLocalOrionDatabase bLocalOrionDatabase, BIOrionApp bIOrionApp, OrionSession orionSession) throws Exception;
|
|
}
|