Package org.oasisopen.odata.csdl.v4
Class TAction
- java.lang.Object
-
- org.oasisopen.odata.csdl.v4.TAction
-
public class TAction extends Object
Java class for TAction complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="TAction"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <choice maxOccurs="unbounded" minOccurs="0"> <element name="Parameter" type="{http://docs.oasis-open.org/odata/ns/edm}TActionFunctionParameter"/> <element ref="{http://docs.oasis-open.org/odata/ns/edm}Annotation"/> <element name="ReturnType" type="{http://docs.oasis-open.org/odata/ns/edm}TActionFunctionReturnType"/> </choice> <attGroup ref="{http://docs.oasis-open.org/odata/ns/edm}TActionAttributes"/> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected StringentitySetPathprotected BooleanisBoundprotected Stringnameprotected List<Object>parameterOrAnnotationOrReturnType
-
Constructor Summary
Constructors Constructor Description TAction()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetEntitySetPath()Gets the value of the entitySetPath property.StringgetName()Gets the value of the name property.List<Object>getParameterOrAnnotationOrReturnType()Gets the value of the parameterOrAnnotationOrReturnType property.booleanisIsBound()Gets the value of the isBound property.voidsetEntitySetPath(String value)Sets the value of the entitySetPath property.voidsetIsBound(Boolean value)Sets the value of the isBound property.voidsetName(String value)Sets the value of the name property.
-
-
-
Method Detail
-
getParameterOrAnnotationOrReturnType
public List<Object> getParameterOrAnnotationOrReturnType()
Gets the value of the parameterOrAnnotationOrReturnType property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the parameterOrAnnotationOrReturnType property.For example, to add a new item, do as follows:
getParameterOrAnnotationOrReturnType().add(newItem);Objects of the following type(s) are allowed in the list
TActionFunctionParameterAnnotationTActionFunctionReturnType
-
getName
public String getName()
Gets the value of the name property.- Returns:
- possible object is
String
-
setName
public void setName(String value)
Sets the value of the name property.- Parameters:
value- allowed object isString
-
getEntitySetPath
public String getEntitySetPath()
Gets the value of the entitySetPath property.- Returns:
- possible object is
String
-
setEntitySetPath
public void setEntitySetPath(String value)
Sets the value of the entitySetPath property.- Parameters:
value- allowed object isString
-
isIsBound
public boolean isIsBound()
Gets the value of the isBound property.- Returns:
- possible object is
Boolean
-
-