/**
 * Instances of this class represent the role of passenger.
 */
class Passenger implements Role {
    public Something getSomething() { return null; }
} // class Passenger
