* {@link GeoPointType}.
* @return {@link UnitLocationTypeBean}
*/
public static final UnitLocationTypeBean convertLocationTypeToBean(
final GeoPointType locationType) {
final UnitLocationTypeBean locationTypeBean = new UnitLocationTypeBean();
locationTypeBean.setIdLocType(locationType.getLocationTypeId());
locationTypeBean.setLocTypeDesc(locationType
.getLocationTypeDescription());
locationTypeBean.setLevel(locationType.getLocationTypeLevel());
return locationTypeBean;
}