Class OperaDomain
- java.lang.Object
-
- ch.supertomcat.supertomcatutils.http.cookies.opera.oldformat.containers.OperaDomain
-
public class OperaDomain extends Object
OperaDomain
-
-
Constructor Summary
Constructors Constructor Description OperaDomain()Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddCookie(OperaCookie cookie)Add CookievoidaddPath(OperaPath path)Add PathvoidaddSubDomain(OperaDomain subDomain)Add Sub DomainbytegetAccept()List<OperaCookie>getCookies()Returns the cookiesList<OperaCookie>getCookies(boolean recursive)StringgetFullyQualifiedName()Returns the fullyQualifiedNameStringgetName()bytegetNotMatch()List<OperaPath>getPaths()Returns the pathsList<OperaDomain>getSubDomains()Returns the subDomainsbytegetThirdParty()voidsetAccept(byte accept)voidsetFullyQualifiedName(String fullyQualifiedName)Sets the fullyQualifiedNamevoidsetName(String name)voidsetNotMatch(byte notMatch)voidsetThirdParty(byte thirdParty)StringtoString()
-
-
-
Method Detail
-
getName
public String getName()
- Returns:
- the name
-
setName
public void setName(String name)
- Parameters:
name- the name to set
-
getFullyQualifiedName
public String getFullyQualifiedName()
Returns the fullyQualifiedName- Returns:
- fullyQualifiedName
-
setFullyQualifiedName
public void setFullyQualifiedName(String fullyQualifiedName)
Sets the fullyQualifiedName- Parameters:
fullyQualifiedName- fullyQualifiedName
-
getAccept
public byte getAccept()
- Returns:
- the accept
-
setAccept
public void setAccept(byte accept)
- Parameters:
accept- the accept to set
-
getNotMatch
public byte getNotMatch()
- Returns:
- the notMatch
-
setNotMatch
public void setNotMatch(byte notMatch)
- Parameters:
notMatch- the notMatch to set
-
getThirdParty
public byte getThirdParty()
- Returns:
- the thirdParty
-
setThirdParty
public void setThirdParty(byte thirdParty)
- Parameters:
thirdParty- the thirdParty to set
-
addCookie
public void addCookie(OperaCookie cookie)
Add Cookie- Parameters:
cookie- Cookie
-
addPath
public void addPath(OperaPath path)
Add Path- Parameters:
path- Path
-
addSubDomain
public void addSubDomain(OperaDomain subDomain)
Add Sub Domain- Parameters:
subDomain- Sub Domain
-
getCookies
public List<OperaCookie> getCookies()
Returns the cookies- Returns:
- cookies
-
getCookies
public List<OperaCookie> getCookies(boolean recursive)
- Parameters:
recursive- Recursive- Returns:
- the cookies
-
getSubDomains
public List<OperaDomain> getSubDomains()
Returns the subDomains- Returns:
- subDomains
-
-