FileDocCategorySizeDatePackage
RoleMap.javaAPI DocGlassfish v2 API3806Fri May 04 22:31:54 BST 2007com.sun.enterprise.deployment.runtime.connector

RoleMap

public class RoleMap extends com.sun.enterprise.deployment.runtime.RuntimeDescriptor
This class was based on the schema2beans generated one modified to remove its dependencies on schema2beans libraries.
author
Jerome Dochez
version

Fields Summary
public static final String
DESCRIPTION
public static final String
MAP_ELEMENT
public static final String
MAP_ID
Constructors Summary
Methods Summary
public intaddMapElement(MapElement value)

	return this.addValue(MAP_ELEMENT, value);
    
public MapElementgetMapElement(int index)

	return (MapElement)this.getValue(MAP_ELEMENT, index);
    
public MapElement[]getMapElement()

	return (MapElement[])this.getValues(MAP_ELEMENT);
    
public intremoveMapElement(MapElement value)

	return this.removeValue(MAP_ELEMENT, value);
    
public voidsetMapElement(int index, MapElement value)

    
    // This attribute is an array, possibly empty
         
    
	this.setValue(MAP_ELEMENT, index, value);
    
public voidsetMapElement(MapElement[] value)

	this.setValue(MAP_ELEMENT, value);
    
public intsizeMapElement()

	return this.size(MAP_ELEMENT);
    
public booleanverify()

	return true;