Notes for Creating a New Resource ================================= Bodington uses... 1. Add new constant in Resource: /** * Constant to represent a user. */ public static final int RESOURCE_USER = 31; 2. Update to include the new constant. Resource.getShortName() Resource.mapHttpFacilityNoToResourceType() 3. Update ResourceTypeNames.properties to include the new resource. The properties should be named resource.name.[shortname] and resource.description.[shortname] 4. Update Resource.getContainableResources() to reflect the resources that can be contained inside this resource and where this resource can be created. 5. You may wish to subclass Resource so add specific properties for the new class. If so you also need to add the SQL file.