Class SubjectLocalityBean
- java.lang.Object
-
- org.apache.wss4j.common.saml.bean.SubjectLocalityBean
-
public class SubjectLocalityBean extends Object
This class represents a SubjectLocality.
-
-
Constructor Summary
Constructors Constructor Description SubjectLocalityBean()Default constructor explicitly provided since other constructors would prevent its automatic creation.SubjectLocalityBean(String ipAddress, String dnsAddress)Constructor for creating a SubjectLocalityBean with ip and dns addresses.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)StringgetDnsAddress()Get the dns address.StringgetIpAddress()Get the ip address.inthashCode()voidsetDnsAddress(String dnsAddress)Set the dns address.voidsetIpAddress(String ipAddress)Set the ip address.
-
-
-
Method Detail
-
getIpAddress
public final String getIpAddress()
Get the ip address.- Returns:
- the ipAddress
-
setIpAddress
public final void setIpAddress(String ipAddress)
Set the ip address.- Parameters:
ipAddress- the ipAddress to set
-
getDnsAddress
public final String getDnsAddress()
Get the dns address.- Returns:
- the dnsAddress
-
setDnsAddress
public final void setDnsAddress(String dnsAddress)
Set the dns address.- Parameters:
dnsAddress- the dnsAddress to set
-
-