summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/entity/AnimalTamer.java
blob: 5f74f0d85bcb996c39d355f1f1d5ccebb5b1eaf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package org.bukkit.entity;

import java.util.UUID;

public interface AnimalTamer {

    /**
     * This is the name of the specified AnimalTamer.
     *
     * @return The name to reference on tamed animals or null if a name cannot be obtained
     */
    public String getName();

    /**
     * This is the UUID of the specified AnimalTamer.
     *
     * @return The UUID to reference on tamed animals
     */
    public UUID getUniqueId();
}