123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- package hello.accounts.entity;
- import hello.*;
- import com.techempower.gemini.pyxis.*;
- /**
- * Represents a user group for the GeminiHello application.
- *
- * @author mhixson
- *
- * Development history:
- * 2012-04-19 - mh - Created
- */
- public class Group
- extends GhDataEntity
- implements PyxisUserGroup
- {
- //
- // Member variables.
- //
- private String name; // 50 chars
- private String description; // 100 chars
- private int type;
- //
- // Member methods.
- //
- /**
- * Alias for getId(), required by PyxisUserGroup.
- */
- @Override
- public int getGroupID()
- {
- return getId();
- }
- /**
- * Alias for setId(int), required by PyxisUserGroup.
- */
- @Override
- public void setGroupID(int groupID)
- {
- setId(groupID);
- }
- /**
- * @see com.techempower.gemini.pyxisPyxisUserGroup#getDescription()
- */
- @Override
- public String getDescription()
- {
- return this.description;
- }
- /**
- * @see com.techempower.gemini.pyxisPyxisUserGroup#setDescription(String)
- */
- @Override
- public void setDescription(String description)
- {
- this.description = description;
- }
- /**
- * @see com.techempower.gemini.pyxisPyxisUserGroup#getName()
- */
- @Override
- public String getName()
- {
- return this.name;
- }
- /**
- * @see com.techempower.gemini.pyxisPyxisUserGroup#setName(String)
- */
- @Override
- public void setName(String name)
- {
- this.name = name;
- }
- /**
- * @see com.techempower.gemini.pyxisPyxisUserGroup#getType()
- */
- @Override
- public int getType()
- {
- return this.type;
- }
- /**
- * @see com.techempower.gemini.pyxisPyxisUserGroup#setType(int)
- */
- @Override
- public void setType(int type)
- {
- this.type = type;
- }
- } // End Group.
|