Package de.blackrose01.model
Class Website
- java.lang.Object
-
- de.blackrose01.model.Website
-
- All Implemented Interfaces:
Serializable
public class Website extends Object implements Serializable
A website url, usually associated with a game- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Website()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)intgetCategory()StringgetChecksum()longgetGame()GamegetGameObject()longgetId()StringgetUrl()inthashCode()booleanisTrusted()voidsetCategory(int category)voidsetChecksum(String checksum)voidsetGame(Object game)voidsetId(long id)voidsetTrusted(boolean trusted)voidsetUrl(String url)StringtoString()
-
-
-
Method Detail
-
getId
public long getId()
-
setId
public void setId(long id)
-
getCategory
public int getCategory()
-
setCategory
public void setCategory(int category)
-
getGame
public long getGame()
-
getGameObject
public Game getGameObject()
-
setGame
public void setGame(Object game)
-
isTrusted
public boolean isTrusted()
-
setTrusted
public void setTrusted(boolean trusted)
-
getUrl
public String getUrl()
-
setUrl
public void setUrl(String url)
-
getChecksum
public String getChecksum()
-
setChecksum
public void setChecksum(String checksum)
-
-