/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package gov.hhs.fha.nhinc.gateway.policyenginetransformation.Helpers; import gov.hhs.fha.nhinc.common.nhinccommon.HomeCommunityType; /** * * @author rayj */ public class CommunityHelper { public static String extractCommunityId(HomeCommunityType community) { String communityId = null; if (community != null) { communityId = community.getHomeCommunityId(); } return communityId; } }