001package headfirst.proxy.javaproxy;
002
003public interface PersonBean {
004
005        String getName();
006        String getGender();
007        String getInterests();
008        int getHotOrNotRating();
009
010        void setName(String name);
011        void setGender(String gender);
012        void setInterests(String interests);
013        void setHotOrNotRating(int rating);
014
015}