Changeset 5183 for openmrs/branches/data_synchronization_bidirectional/src/api/org/openmrs/api/PersonService.java
- Timestamp:
- 08/06/08 17:17:55 (5 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
openmrs/branches/data_synchronization_bidirectional/src/api/org/openmrs/api/PersonService.java
r4969 r5183 384 384 public List<RelationshipType> getAllRelationshipTypes() throws APIException; 385 385 386 /** 387 * Get all relationshipTypes with or without the retired ones 388 * 389 * @param includeRetired true/false whether or not to include the relationship types 390 * @return relationshipType list 391 * @throws APIException 392 */ 393 @Transactional(readOnly = true) 394 @Authorized( { OpenmrsConstants.PRIV_VIEW_RELATIONSHIP_TYPES }) 395 public List<RelationshipType> getAllRelationshipTypes(boolean includeRetired) throws APIException; 386 396 387 397 388 /**