public class

FeedbackReceivedType

extends Object
implements Serializable
java.lang.Object
   ↳ com.workday.staffing.FeedbackReceivedType

Class Overview

Contains the informational components of a feedback (comment, date, question asked, sender, requester, and type).

Java class for Feedback_ReceivedType complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="Feedback_ReceivedType">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="From" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="Requested_By_Worker_Reference" type="{urn:com.workday/bsvc}WorkerObjectType" minOccurs="0"/>
         <element name="Feedback_Type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="Date" type="{http://www.w3.org/2001/XMLSchema}date" minOccurs="0"/>
         <element name="Feedback_Response_Data" type="{urn:com.workday/bsvc}Feedback_ResponseType" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 

Summary

Constants
long serialVersionUID
Fields
protected XMLGregorianCalendar date
protected List<FeedbackResponseType> feedbackResponseData
protected String feedbackType
protected String from
protected WorkerObjectType requestedByWorkerReference
Public Constructors
FeedbackReceivedType()
Public Methods
XMLGregorianCalendar getDate()
Gets the value of the date property.
List<FeedbackResponseType> getFeedbackResponseData()
Gets the value of the feedbackResponseData property.
String getFeedbackType()
Gets the value of the feedbackType property.
String getFrom()
Gets the value of the from property.
WorkerObjectType getRequestedByWorkerReference()
Gets the value of the requestedByWorkerReference property.
void setDate(XMLGregorianCalendar value)
Sets the value of the date property.
void setFeedbackResponseData(List<FeedbackResponseType> feedbackResponseData)
Sets the value of the feedbackResponseData property.
void setFeedbackType(String value)
Sets the value of the feedbackType property.
void setFrom(String value)
Sets the value of the from property.
void setRequestedByWorkerReference(WorkerObjectType value)
Sets the value of the requestedByWorkerReference property.
[Expand]
Inherited Methods
From class java.lang.Object

Constants

private static final long serialVersionUID

Constant Value: 1 (0x0000000000000001)

Fields

protected XMLGregorianCalendar date

protected List<FeedbackResponseType> feedbackResponseData

protected String feedbackType

protected String from

protected WorkerObjectType requestedByWorkerReference

Public Constructors

public FeedbackReceivedType ()

Public Methods

public XMLGregorianCalendar getDate ()

Gets the value of the date property.

Returns
  • possible object is XMLGregorianCalendar

public List<FeedbackResponseType> getFeedbackResponseData ()

Gets the value of the feedbackResponseData 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 set method for the feedbackResponseData property.

For example, to add a new item, do as follows:

    getFeedbackResponseData().add(newItem);
 

Objects of the following type(s) are allowed in the list FeedbackResponseType

public String getFeedbackType ()

Gets the value of the feedbackType property.

Returns
  • possible object is String

public String getFrom ()

Gets the value of the from property.

Returns
  • possible object is String

public WorkerObjectType getRequestedByWorkerReference ()

Gets the value of the requestedByWorkerReference property.

Returns

public void setDate (XMLGregorianCalendar value)

Sets the value of the date property.

Parameters
value Allowed object is XMLGregorianCalendar

public void setFeedbackResponseData (List<FeedbackResponseType> feedbackResponseData)

Sets the value of the feedbackResponseData property.

Parameters
feedbackResponseData Allowed object is FeedbackResponseType

public void setFeedbackType (String value)

Sets the value of the feedbackType property.

Parameters
value Allowed object is String

public void setFrom (String value)

Sets the value of the from property.

Parameters
value Allowed object is String

public void setRequestedByWorkerReference (WorkerObjectType value)

Sets the value of the requestedByWorkerReference property.

Parameters
value Allowed object is WorkerObjectType