edu.internet2.middleware.grouper.ws.coresoap
Class WsStem

java.lang.Object
  extended by edu.internet2.middleware.grouper.ws.coresoap.WsStem
All Implemented Interfaces:
Comparable<WsStem>

public class WsStem
extends Object
implements Comparable<WsStem>

Result for finding a stem

Author:
mchyzer

Constructor Summary
WsStem()
          no arg constructor
WsStem(Stem stem)
          construct based on stem, assign all fields
 
Method Summary
 int compareTo(WsStem o2)
           
 String getDescription()
          friendly description of this stem
 String getDisplayExtension()
           
 String getDisplayName()
          friendly extensions of stem and parent stems
 String getExtension()
           
 String getName()
          Full name of the stem (all extensions of parent stems, separated by colons, and the extention of this stem
 String getUuid()
          universally unique identifier of this stem
 void setDescription(String description1)
          friendly description of this stem
 void setDisplayExtension(String displayExtension1)
           
 void setDisplayName(String displayName1)
          friendly extensions of stem and parent stems
 void setExtension(String extension1)
           
 void setName(String name1)
          Full name of the stem (all extensions of parent stems, separated by colons, and the extention of this stem
 void setUuid(String uuid1)
          universally unique identifier of this stem
 String toString()
          make sure this is an explicit toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

WsStem

public WsStem()
no arg constructor


WsStem

public WsStem(Stem stem)
construct based on stem, assign all fields

Parameters:
stem - is what to construct from
Method Detail

getDescription

public String getDescription()
friendly description of this stem

Returns:
the description

setDescription

public void setDescription(String description1)
friendly description of this stem

Parameters:
description1 - the description to set

getDisplayName

public String getDisplayName()
friendly extensions of stem and parent stems

Returns:
the displayName

setDisplayName

public void setDisplayName(String displayName1)
friendly extensions of stem and parent stems

Parameters:
displayName1 - the displayName to set

getName

public String getName()
Full name of the stem (all extensions of parent stems, separated by colons, and the extention of this stem

Returns:
the name

setName

public void setName(String name1)
Full name of the stem (all extensions of parent stems, separated by colons, and the extention of this stem

Parameters:
name1 - the name to set

getUuid

public String getUuid()
universally unique identifier of this stem

Returns:
the uuid

setUuid

public void setUuid(String uuid1)
universally unique identifier of this stem

Parameters:
uuid1 - the uuid to set

getExtension

public String getExtension()
Returns:
the extension

setExtension

public void setExtension(String extension1)
Parameters:
extension1 - the extension to set

getDisplayExtension

public String getDisplayExtension()
Returns:
the displayExtension

setDisplayExtension

public void setDisplayExtension(String displayExtension1)
Parameters:
displayExtension1 - the displayExtension to set

toString

public String toString()
make sure this is an explicit toString

Overrides:
toString in class Object

compareTo

public int compareTo(WsStem o2)
Specified by:
compareTo in interface Comparable<WsStem>
See Also:
Comparable.compareTo(java.lang.Object)