@Documented
@Target(value=java.lang.annotation.ElementType.TYPE)
@Retention(value=RUNTIME)
@Deprecated
public @interface UESBusinessEntity
Annotation used for declaration of Business Entities. Each
business entity is then propagated into business entity registry
which is part of system catalog.
Code of business entity. Code must be unique in scope of entities
(and whole system catalog). If not provided, code is generated
from business entity class.
id
public abstract java.lang.String id
Deprecated.
ID of business entity type. Value is typically empty and is generated
based on entity code, however when entity code is changed between UES
versions, is is necessary to provide original ID to maintain backward
compatibility.
Default:
""
parent
public abstract java.lang.String parent
Deprecated.
Code of parent business entity. When not set, either physical parent
entity class or root business entity (analogy to java.lang.Object) is
used as parent.