Como mapear uma chave composta com o Hibernate?

Neste código, como gerar uma classe Java para a chave composta (como compor a chave no hibernate):

create table Time (
        levelStation int(15) not null,
        src varchar(100) not null,
        dst varchar(100) not null,
        distance int(15) not null,
        price int(15) not null,
        confPathID int(15) not null,
        constraint ConfPath_fk foreign key(confPathID) references ConfPath(confPathID),
        primary key (levelStation, confPathID)
)ENGINE=InnoDB  DEFAULT CHARSET=utf8;

questionAnswers(8)

yourAnswerToTheQuestion