#190 Remove urm plugin
This commit is contained in:
@ -1,39 +0,0 @@
|
||||
@startuml
|
||||
package domainapp.dom.app.homepage {
|
||||
class HomePageService {
|
||||
~ container : DomainObjectContainer
|
||||
+ HomePageService()
|
||||
+ homePage() : HomePageViewModel
|
||||
}
|
||||
class HomePageViewModel {
|
||||
~ simpleObjects : SimpleObjects
|
||||
+ HomePageViewModel()
|
||||
+ getObjects() : List<SimpleObject>
|
||||
+ title() : String
|
||||
}
|
||||
}
|
||||
package domainapp.dom.modules.simple {
|
||||
class SimpleObject {
|
||||
- container : DomainObjectContainer
|
||||
- name : String
|
||||
+ SimpleObject()
|
||||
+ compareTo(other : SimpleObject) : int
|
||||
+ default0UpdateName() : String
|
||||
+ getName() : String
|
||||
+ getVersionSequence() : Long
|
||||
+ setName(name : String)
|
||||
+ title() : TranslatableString
|
||||
+ updateName(name : String) : SimpleObject
|
||||
+ validateUpdateName(name : String) : TranslatableString
|
||||
}
|
||||
class SimpleObjects {
|
||||
~ container : DomainObjectContainer
|
||||
+ SimpleObjects()
|
||||
+ create(name : String) : SimpleObject
|
||||
+ findByName(name : String) : List<SimpleObject>
|
||||
+ listAll() : List<SimpleObject>
|
||||
+ title() : TranslatableString
|
||||
}
|
||||
}
|
||||
HomePageViewModel --> "-simpleObjects" SimpleObjects
|
||||
@enduml
|
@ -1,93 +0,0 @@
|
||||
@startuml
|
||||
package domainapp.dom.app.homepage {
|
||||
class HomePageService {
|
||||
~ container : DomainObjectContainer
|
||||
+ HomePageService()
|
||||
+ homePage() : HomePageViewModel
|
||||
}
|
||||
class HomePageViewModel {
|
||||
~ simpleObjects : SimpleObjects
|
||||
+ HomePageViewModel()
|
||||
+ getObjects() : List<SimpleObject>
|
||||
+ title() : String
|
||||
}
|
||||
}
|
||||
package domainapp.dom.modules.simple {
|
||||
class SimpleObject {
|
||||
- container : DomainObjectContainer
|
||||
- dnFieldFlags : byte[] {static}
|
||||
- dnFieldNames : String[] {static}
|
||||
- dnFieldTypes : Class[] {static}
|
||||
# dnFlags : byte
|
||||
- dnInheritedFieldCount : int {static}
|
||||
- dnPersistableSuperclass : Class<T> {static}
|
||||
# dnStateManager : StateManager
|
||||
- name : String
|
||||
+ SimpleObject()
|
||||
+ ___dn$loadClass(className : String) : Class<T> {static}
|
||||
- __dnFieldFlagsInit() : byte[] {static}
|
||||
- __dnFieldNamesInit() : String[] {static}
|
||||
- __dnFieldTypesInit() : Class[] {static}
|
||||
# __dnGetInheritedFieldCount() : int {static}
|
||||
- __dnPersistableSuperclassInit() : Class<T> {static}
|
||||
+ compareTo(other : SimpleObject) : int
|
||||
+ default0UpdateName() : String
|
||||
# dnCopyField(obj : SimpleObject, index : int)
|
||||
+ dnCopyFields(obj : Object, indices : int[])
|
||||
+ dnCopyKeyFieldsFromObjectId(fc : ObjectIdFieldConsumer, oid : Object)
|
||||
# dnCopyKeyFieldsFromObjectId(oid : Object)
|
||||
+ dnCopyKeyFieldsToObjectId(fs : ObjectIdFieldSupplier, oid : Object)
|
||||
+ dnCopyKeyFieldsToObjectId(oid : Object)
|
||||
+ dnGetExecutionContext() : ExecutionContextReference
|
||||
# dnGetManagedFieldCount() : int {static}
|
||||
+ dnGetObjectId() : Object
|
||||
+ dnGetTransactionalObjectId() : Object
|
||||
+ dnGetVersion() : Object
|
||||
+ dnGetname() : String
|
||||
+ dnIsDeleted() : boolean
|
||||
+ dnIsDetached() : boolean
|
||||
+ dnIsDirty() : boolean
|
||||
+ dnIsNew() : boolean
|
||||
+ dnIsPersistent() : boolean
|
||||
+ dnIsTransactional() : boolean
|
||||
+ dnMakeDirty(fieldName : String)
|
||||
+ dnNewInstance(sm : StateManager) : Persistable
|
||||
+ dnNewInstance(sm : StateManager, obj : Object) : Persistable
|
||||
+ dnNewObjectIdInstance() : Object
|
||||
+ dnNewObjectIdInstance(key : Object) : Object
|
||||
# dnPreSerialize()
|
||||
+ dnProvideField(index : int)
|
||||
+ dnProvideFields(indices : int[])
|
||||
+ dnReplaceField(index : int)
|
||||
+ dnReplaceFields(indices : int[])
|
||||
+ dnReplaceFlags()
|
||||
+ dnReplaceStateManager(sm : StateManager)
|
||||
+ dnSetname(name : String)
|
||||
- dnSuperClone() : Object
|
||||
+ getName() : String
|
||||
+ getVersionSequence() : Long
|
||||
+ setName(val : String)
|
||||
+ title() : TranslatableString
|
||||
+ updateName(name : String) : SimpleObject
|
||||
+ validateUpdateName(name : String) : TranslatableString
|
||||
}
|
||||
class SimpleObjects {
|
||||
~ container : DomainObjectContainer
|
||||
+ SimpleObjects()
|
||||
+ create(name : String) : SimpleObject
|
||||
+ findByName(name : String) : List<SimpleObject>
|
||||
+ listAll() : List<SimpleObject>
|
||||
+ title() : TranslatableString
|
||||
}
|
||||
}
|
||||
package domainapp.fixture {
|
||||
class DomainAppFixturesProvider {
|
||||
+ DomainAppFixturesProvider()
|
||||
+ getSpecification() : FixtureScriptsSpecification
|
||||
}
|
||||
}
|
||||
Builder ..+ FixtureScriptsSpecification
|
||||
DropDownPolicy ..+ FixtureScriptsSpecification
|
||||
MultipleExecutionStrategy ..+ FixtureScripts
|
||||
HomePageViewModel --> "-simpleObjects" SimpleObjects
|
||||
@enduml
|
@ -1,93 +0,0 @@
|
||||
@startuml
|
||||
package domainapp.dom.app.homepage {
|
||||
class HomePageService {
|
||||
~ container : DomainObjectContainer
|
||||
+ HomePageService()
|
||||
+ homePage() : HomePageViewModel
|
||||
}
|
||||
class HomePageViewModel {
|
||||
~ simpleObjects : SimpleObjects
|
||||
+ HomePageViewModel()
|
||||
+ getObjects() : List<SimpleObject>
|
||||
+ title() : String
|
||||
}
|
||||
}
|
||||
package domainapp.dom.modules.simple {
|
||||
class SimpleObject {
|
||||
- container : DomainObjectContainer
|
||||
- dnFieldFlags : byte[] {static}
|
||||
- dnFieldNames : String[] {static}
|
||||
- dnFieldTypes : Class[] {static}
|
||||
# dnFlags : byte
|
||||
- dnInheritedFieldCount : int {static}
|
||||
- dnPersistableSuperclass : Class<T> {static}
|
||||
# dnStateManager : StateManager
|
||||
- name : String
|
||||
+ SimpleObject()
|
||||
+ ___dn$loadClass(className : String) : Class<T> {static}
|
||||
- __dnFieldFlagsInit() : byte[] {static}
|
||||
- __dnFieldNamesInit() : String[] {static}
|
||||
- __dnFieldTypesInit() : Class[] {static}
|
||||
# __dnGetInheritedFieldCount() : int {static}
|
||||
- __dnPersistableSuperclassInit() : Class<T> {static}
|
||||
+ compareTo(other : SimpleObject) : int
|
||||
+ default0UpdateName() : String
|
||||
# dnCopyField(obj : SimpleObject, index : int)
|
||||
+ dnCopyFields(obj : Object, indices : int[])
|
||||
+ dnCopyKeyFieldsFromObjectId(fc : ObjectIdFieldConsumer, oid : Object)
|
||||
# dnCopyKeyFieldsFromObjectId(oid : Object)
|
||||
+ dnCopyKeyFieldsToObjectId(fs : ObjectIdFieldSupplier, oid : Object)
|
||||
+ dnCopyKeyFieldsToObjectId(oid : Object)
|
||||
+ dnGetExecutionContext() : ExecutionContextReference
|
||||
# dnGetManagedFieldCount() : int {static}
|
||||
+ dnGetObjectId() : Object
|
||||
+ dnGetTransactionalObjectId() : Object
|
||||
+ dnGetVersion() : Object
|
||||
+ dnGetname() : String
|
||||
+ dnIsDeleted() : boolean
|
||||
+ dnIsDetached() : boolean
|
||||
+ dnIsDirty() : boolean
|
||||
+ dnIsNew() : boolean
|
||||
+ dnIsPersistent() : boolean
|
||||
+ dnIsTransactional() : boolean
|
||||
+ dnMakeDirty(fieldName : String)
|
||||
+ dnNewInstance(sm : StateManager) : Persistable
|
||||
+ dnNewInstance(sm : StateManager, obj : Object) : Persistable
|
||||
+ dnNewObjectIdInstance() : Object
|
||||
+ dnNewObjectIdInstance(key : Object) : Object
|
||||
# dnPreSerialize()
|
||||
+ dnProvideField(index : int)
|
||||
+ dnProvideFields(indices : int[])
|
||||
+ dnReplaceField(index : int)
|
||||
+ dnReplaceFields(indices : int[])
|
||||
+ dnReplaceFlags()
|
||||
+ dnReplaceStateManager(sm : StateManager)
|
||||
+ dnSetname(name : String)
|
||||
- dnSuperClone() : Object
|
||||
+ getName() : String
|
||||
+ getVersionSequence() : Long
|
||||
+ setName(val : String)
|
||||
+ title() : TranslatableString
|
||||
+ updateName(name : String) : SimpleObject
|
||||
+ validateUpdateName(name : String) : TranslatableString
|
||||
}
|
||||
class SimpleObjects {
|
||||
~ container : DomainObjectContainer
|
||||
+ SimpleObjects()
|
||||
+ create(name : String) : SimpleObject
|
||||
+ findByName(name : String) : List<SimpleObject>
|
||||
+ listAll() : List<SimpleObject>
|
||||
+ title() : TranslatableString
|
||||
}
|
||||
}
|
||||
package domainapp.fixture {
|
||||
class DomainAppFixturesProvider {
|
||||
+ DomainAppFixturesProvider()
|
||||
+ getSpecification() : FixtureScriptsSpecification
|
||||
}
|
||||
}
|
||||
Builder ..+ FixtureScriptsSpecification
|
||||
DropDownPolicy ..+ FixtureScriptsSpecification
|
||||
MultipleExecutionStrategy ..+ FixtureScripts
|
||||
HomePageViewModel --> "-simpleObjects" SimpleObjects
|
||||
@enduml
|
@ -317,23 +317,6 @@
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-report-plugin</artifactId>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>com.github.markusmo3.urm</groupId>
|
||||
<artifactId>urm-maven-plugin</artifactId>
|
||||
<version>${urm.version}</version>
|
||||
<configuration combine.self="override">
|
||||
<outputDirectory>${project.basedir}/../etc</outputDirectory>
|
||||
<packages>
|
||||
<param>com.iluwatar</param>
|
||||
<param>domainapp</param>
|
||||
</packages>
|
||||
<skipForProjects>
|
||||
<!-- skip for parent project -->
|
||||
<param>naked-objects</param>
|
||||
<param>naked-objects-webapp</param>
|
||||
</skipForProjects>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
|
Reference in New Issue
Block a user