Can what be done? I think you've missed something. Are you trying to put a set of countries in a customer? A set of customers in a country? If you are trying one of these things, how are you hoping to do it? Will there be a foreign key from one to the other?
I'm going to guess that you want to list all customers by country. So you'd have a table like this:
Country: ID, CountryName.
And a POJO with methods getId(), getName(), and getCustomers(). In that case your mapping would be
Code:
<class name="Country" table="Country">
<id column="ID" .../>
<property name="Name" column="CountryName" type="string"/>
<set name="Customers">
<key column="ID" not-null="true"/>
<one-to-many class="Customer"/>
</set>
</class>