Downloads Documentation Community Contribute Demo






Show Sidebar
Login | Register
Show
Ignore:
Timestamp:
05/16/08 18:28:28 (6 months ago)
Author:
bwolfe
Message:

api-refactoring: Re-refactoring some of the api services

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • openmrs/branches/api_refactoring/src/api/org/openmrs/Concept.java

    r4231 r4240  
    4444        private Integer conceptId; 
    4545        private Boolean retired = false; 
     46        private User retiredBy; 
     47        private Date dateRetired; 
     48        private String retireReason; 
    4649        private ConceptDatatype datatype; 
    4750        private ConceptClass conceptClass; 
     
    428431                this.retired = retired; 
    429432        } 
     433         
     434        /** 
     435     * @return the retiredBy 
     436     */ 
     437    public User getRetiredBy() { 
     438        return retiredBy; 
     439    } 
     440 
     441        /** 
     442     * @param retiredBy the retiredBy to set 
     443     */ 
     444    public void setRetiredBy(User retiredBy) { 
     445        this.retiredBy = retiredBy; 
     446    } 
     447 
     448        /** 
     449     * @return the dateRetired 
     450     */ 
     451    public Date getDateRetired() { 
     452        return dateRetired; 
     453    } 
     454 
     455        /** 
     456     * @param dateRetired the dateRetired to set 
     457     */ 
     458    public void setDateRetired(Date dateRetired) { 
     459        this.dateRetired = dateRetired; 
     460    } 
     461 
     462        /** 
     463     * @return the retireReason 
     464     */ 
     465    public String getRetireReason() { 
     466        return retireReason; 
     467    } 
     468 
     469        /** 
     470     * @param retireReason the retireReason to set 
     471     */ 
     472    public void setRetireReason(String retireReason) { 
     473        this.retireReason = retireReason; 
     474    } 
    430475 
    431476        /**