001    package org.bukkit.entity;
002    
003    import java.util.UUID;
004    
005    public interface AnimalTamer {
006    
007        /**
008         * This is the name of the specified AnimalTamer.
009         *
010         * @return The name to reference on tamed animals or null if a name cannot be obtained
011         */
012        public String getName();
013    
014        /**
015         * This is the UUID of the specified AnimalTamer.
016         *
017         * @return The UUID to reference on tamed animals
018         */
019        public UUID getUniqueId();
020    }