- Timestamp:
- 07/16/08 12:29:31 (6 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
openmrs/branches/1.3.x/src/api/org/openmrs/api/PersonService.java
r4358 r4947 379 379 public List<RelationshipType> getAllRelationshipTypes() throws APIException; 380 380 381 /** 382 * Get all relationshipTypes with or without the retired ones 383 * 384 * @param includeRetired true/false whether or not to include the relationship types 385 * @return relationshipType list 386 * @throws APIException 387 */ 388 @Transactional(readOnly = true) 389 @Authorized( { OpenmrsConstants.PRIV_VIEW_RELATIONSHIP_TYPES }) 390 public List<RelationshipType> getAllRelationshipTypes(boolean includeRetired) throws APIException; 381 391 382 392 383 /**