001    package com.sptci.auth;
002    
003    /**
004     * A value object that represents a group object.  This bean is used to
005     * store the values necessary to implement authorisation and
006     * potentially authentication.
007     *
008     * <p>&copy; Copyright 2006, Sans Pareil Technologies, Inc.</p>
009     * @author Rakesh Vidyadharan 2006-11-15
010     * @version $Id: Group.java 3251 2007-05-12 19:09:12Z rakesh $
011     */
012    public class Group
013    {
014      /**
015       * The name of the group
016       */
017      public final String name;
018    
019      /**
020       * Create a new instance using the specified values.
021       *
022       * @param name The {@link #name} value to use.
023       */
024      public Group( String name )
025      {
026        this.name = name;
027      }
028    }