Package com.flower.docs.domain.report
Class LoginHistory
- java.lang.Object
-
- com.flower.docs.domain.common.IdentifiableElement
-
- com.flower.docs.domain.report.LoginHistory
-
- All Implemented Interfaces:
java.io.Serializable
public class LoginHistory extends IdentifiableElement implements java.io.Serializable
<p>Java class for anonymous complex type. <p>The following schema fragment specifies the expected content contained within this class. <pre> <complexType> <complexContent> <extension base="{http://flower.com/docs/domain/common}IdentifiableElement"> <sequence> <element name="user" type="{http://flower.com/docs/domain/common}Id"/> <element name="profiles" type="{http://flower.com/docs/domain/common}Id" maxOccurs="unbounded" minOccurs="0"/> <element name="creationDate" type="{http://www.w3.org/2001/XMLSchema}date"/> </sequence> </extension> </complexContent> </complexType> </pre>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.Date
creationDate
protected java.util.List<Id>
profiles
protected Id
user
-
Fields inherited from class com.flower.docs.domain.common.IdentifiableElement
id
-
-
Constructor Summary
Constructors Constructor Description LoginHistory()
Default no-arg constructor abcLoginHistory(Id id, Id user, java.util.List<Id> profiles, java.util.Date creationDate)
Fully-initialising value constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object other)
java.util.Date
getCreationDate()
Gets the value of the creationDate property.java.util.List<Id>
getProfiles()
Gets the value of the profiles property.Id
getUser()
Gets the value of the user property.int
hashCode()
void
setCreationDate(java.util.Date value)
Sets the value of the creationDate property.void
setProfiles(java.util.List<Id> value)
void
setUser(Id value)
Sets the value of the user property.java.lang.String
toString()
-
Methods inherited from class com.flower.docs.domain.common.IdentifiableElement
getId, setId
-
-
-
-
Method Detail
-
setUser
public void setUser(Id value)
Sets the value of the user property.- Parameters:
value
- allowed object isId
-
getProfiles
public java.util.List<Id> getProfiles()
Gets the value of the profiles property. <p> 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 <CODE>set</CODE> method for the profiles property. <p> For example, to add a new item, do as follows: <pre> getProfiles().add(newItem); </pre> <p> Objects of the following type(s) are allowed in the listId
-
getCreationDate
public java.util.Date getCreationDate()
Gets the value of the creationDate property.- Returns:
- possible object is
String
-
setCreationDate
public void setCreationDate(java.util.Date value)
Sets the value of the creationDate property.- Parameters:
value
- allowed object isString
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object other)
- Overrides:
equals
in classjava.lang.Object
-
setProfiles
public void setProfiles(java.util.List<Id> value)
-
-