/*
* JFolder, Copyright 2001-2006 Gary Steinmetz
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jfolder.security.model;
//base classes
//project specific classes
//other classes
public interface GroupHolder {
public String getName();
public String getSecurityType();
//public boolean isSecurityTypePresent();
//public String getSecurityClass();
}
|