You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lenya.apache.org by eg...@apache.org on 2003/06/03 15:49:36 UTC

cvs commit: cocoon-lenya/src/java/org/apache/lenya/cms/ac Group.java

egli        2003/06/03 06:49:36

  Modified:    src/java/org/apache/lenya/cms/ac Group.java
  Log:
  Added a constructor.
  
  Revision  Changes    Path
  1.3       +6 -2      cocoon-lenya/src/java/org/apache/lenya/cms/ac/Group.java
  
  Index: Group.java
  ===================================================================
  RCS file: /home/cvs/cocoon-lenya/src/java/org/apache/lenya/cms/ac/Group.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Group.java	30 May 2003 15:25:53 -0000	1.2
  +++ Group.java	3 Jun 2003 13:49:36 -0000	1.3
  @@ -60,10 +60,14 @@
    */
   public class Group {
   	
  -	protected String name;
  +	private String name;
   	protected Set roles = new HashSet();
   	protected Set users = new HashSet();
   
  +	public Group(String name) {
  +		this.name = name;
  +	}
  +	
   	/**
   	 * Get the name of this group
   	 * 
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: lenya-cvs-unsubscribe@cocoon.apache.org
For additional commands, e-mail: lenya-cvs-help@cocoon.apache.org