org.walluck.oscar
Class SSIItem

java.lang.Object
  extended by org.walluck.oscar.SSIItem

public class SSIItem
extends Object

An SSI item is the core object that makes up the SSI list.

Since:
1.0
Version:
1.0
Author:
David Walluck

Constructor Summary
SSIItem()
          Creates a new SSI item.
 
Method Summary
 int getBid()
          Get the value of bid.
 Object getData()
          Get the value of data.
 int getGid()
          Get the value of gid.
 String getName()
          Get the value of name.
 int getType()
          Get the value of type.
 void setBid(int bid)
          Set the value of bid.
 void setData(Object data)
          Set the value of data.
 void setGid(int gid)
          Set the value of gid.
 void setName(String name)
          Set the value of name.
 void setType(int type)
          Set the value of type.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SSIItem

public SSIItem()
Creates a new SSI item. Note that this is never called directly by the SSI handler.

Method Detail

getName

public String getName()
Get the value of name.

Returns:
value of name.

setName

public void setName(String name)
Set the value of name.

Parameters:
name - Value to assign to name.

getGid

public int getGid()
Get the value of gid.

Returns:
value of gid.

setGid

public void setGid(int gid)
Set the value of gid.

Parameters:
gid - Value to assign to gid.

getBid

public int getBid()
Get the value of bid.

Returns:
value of bid.

setBid

public void setBid(int bid)
Set the value of bid.

Parameters:
bid - Value to assign to bid.

getType

public int getType()
Get the value of type.

Returns:
value of type.

setType

public void setType(int type)
Set the value of type.

Parameters:
type - Value to assign to type.

getData

public Object getData()
Get the value of data.

Returns:
value of data.

setData

public void setData(Object data)
Set the value of data.

Parameters:
data - Value to assign to data.