1: package com.technoetic.xplanner.domain; 2: 3: //DEBT Should include setters 4: //DEBT Should det 5: public interface Nameable extends Identifiable { 6: String getName(); 7: 8: String getDescription(); 9: }