public class Entity extends Object implements Serializable
<complexType name="Entity">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element ref="{http://schema.samply.de/osse/Attribute}Attribute" maxOccurs="unbounded" minOccurs="0"/>
<element ref="{http://schema.samply.de/osse/Container}Container" maxOccurs="unbounded" minOccurs="0"/>
<element name="Ref" type="{http://schema.samply.de/osse/Entity}Ref" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
<attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
</restriction>
</complexContent>
</complexType>
| Modifier and Type | Field and Description |
|---|---|
protected List<Attribute> |
attribute |
protected List<Container> |
container |
protected String |
id |
protected List<Ref> |
ref |
| Constructor and Description |
|---|
Entity() |
| Modifier and Type | Method and Description |
|---|---|
List<Attribute> |
getAttribute()
Gets the value of the attribute property.
|
List<Container> |
getContainer()
Gets the value of the container property.
|
String |
getId()
Gets the value of the id property.
|
List<Ref> |
getRef()
Gets the value of the ref property.
|
void |
setId(String value)
Sets the value of the id property.
|
protected String id
public List<Attribute> getAttribute()
set method for the attribute property.
For example, to add a new item, do as follows:
getAttribute().add(newItem);
Objects of the following type(s) are allowed in the list Attributepublic List<Container> getContainer()
set method for the container property.
For example, to add a new item, do as follows:
getContainer().add(newItem);
Objects of the following type(s) are allowed in the list Containerpublic List<Ref> getRef()
set method for the ref property.
For example, to add a new item, do as follows:
getRef().add(newItem);
Objects of the following type(s) are allowed in the list RefCopyright © 2021 Samply Community. All rights reserved.