source: ccr/trunk/nhin-vista/projects/NHINC/Current/Product/Production/Gateway/GatewaySubscriptionRepositoryEJB/src/java/gov/hhs/fha/nhinc/subscription/repository/SubscriptionRepositoryHelper.java@ 507

Last change on this file since 507 was 507, checked in by George Lilly, 15 years ago

NHIN gateway and adaptor for use on linux with VistA EHR and RPMS

File size: 535 bytes
Line 
1package gov.hhs.fha.nhinc.subscription.repository;
2
3import gov.hhs.fha.nhinc.subscription.repository.data.SubscriptionType;
4
5/**
6 * Helper class for subscrption repository operations
7 *
8 * @author Neil Webb
9 */
10public class SubscriptionRepositoryHelper extends BaseSubscriptionRepositoryHelper
11{
12 public SubscriptionRepositoryHelper() throws SubscriptionRepositoryException
13 {
14 super();
15 }
16
17 @Override
18 protected SubscriptionType getSubscriptionType()
19 {
20 return SubscriptionType.SUBSCRIPTION;
21 }
22}
Note: See TracBrowser for help on using the repository browser.