Class VersionedObject<T>
- java.lang.Object
-
- software.xdev.micromigration.version.VersionedObject<T>
-
-
Constructor Summary
Constructors Constructor Description VersionedObject(T actualObject)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description T
getObject()
MigrationVersion
getVersion()
void
setObject(T actualObject)
void
setVersion(MigrationVersion version)
java.lang.String
toString()
-
-
-
Constructor Detail
-
VersionedObject
public VersionedObject(T actualObject)
-
-
Method Detail
-
setVersion
public void setVersion(MigrationVersion version)
- Specified by:
setVersion
in interfaceVersioned
-
getVersion
public MigrationVersion getVersion()
- Specified by:
getVersion
in interfaceVersioned
-
setObject
public void setObject(T actualObject)
-
getObject
public T getObject()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-