Package org.ametys.plugins.site
Record Class SiteInformationCache.SignupPage
java.lang.Object
java.lang.Record
org.ametys.plugins.site.SiteInformationCache.SignupPage
- Record Components:
url
- The sign-up page URLsiteName
- the page site namelang
- the page languageuserDirByPop
- The userDirectories Ids and populations Ids
- Enclosing class:
- SiteInformationCache
public static record SiteInformationCache.SignupPage(String url, String siteName, String lang, Map<String,String> userDirByPop)
extends Record
Record of the SignupPage parameters
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.lang()
Returns the value of thelang
record component.siteName()
Returns the value of thesiteName
record component.final String
toString()
Returns a string representation of this record class.url()
Returns the value of theurl
record component.Returns the value of theuserDirByPop
record component.
-
Constructor Details
-
SignupPage
Creates an instance of aSignupPage
record class.- Parameters:
url
- the value for theurl
record componentsiteName
- the value for thesiteName
record componentlang
- the value for thelang
record componentuserDirByPop
- the value for theuserDirByPop
record component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object)
. -
url
Returns the value of theurl
record component.- Returns:
- the value of the
url
record component
-
siteName
Returns the value of thesiteName
record component.- Returns:
- the value of the
siteName
record component
-
lang
Returns the value of thelang
record component.- Returns:
- the value of the
lang
record component
-
userDirByPop
Returns the value of theuserDirByPop
record component.- Returns:
- the value of the
userDirByPop
record component
-