Class OperaPath
- java.lang.Object
-
- ch.supertomcat.supertomcatutils.http.cookies.opera.oldformat.containers.OperaPath
-
public class OperaPath extends Object
OperaDomain
-
-
Constructor Summary
Constructors Constructor Description OperaPath()Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddCookie(OperaCookie cookie)Add CookievoidaddSubPath(OperaPath subPath)Add Sub PathList<OperaCookie>getCookies()Returns the cookiesList<OperaCookie>getCookies(boolean recursive)StringgetFullyQualifiedName()Returns the fullyQualifiedNameStringgetName()List<OperaPath>getSubPaths()Returns the subPathsvoidsetFullyQualifiedName(String fullyQualifiedName)Sets the fullyQualifiedNamevoidsetName(String name)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
-
addSubPath
public void addSubPath(OperaPath subPath)
Add Sub Path- Parameters:
subPath- Sub Path
-
addCookie
public void addCookie(OperaCookie cookie)
Add Cookie- Parameters:
cookie- Cookie
-
getCookies
public List<OperaCookie> getCookies()
Returns the cookies- Returns:
- cookies
-
getCookies
public List<OperaCookie> getCookies(boolean recursive)
- Parameters:
recursive- Recursive- Returns:
- the cookies
-
-