Skip to main content
summaryrefslogtreecommitdiffstats
blob: a03d23bec9348aeb10e6b2a42b2551fef9353517 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*******************************************************************************
 * Copyright (c) 2013 Boeing.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Boeing - initial API and implementation
 *******************************************************************************/
package org.eclipse.osee.account.rest.internal;

import java.util.HashSet;
import java.util.Set;
import javax.ws.rs.ApplicationPath;
import javax.ws.rs.core.Application;
import org.eclipse.osee.account.admin.AccountAdmin;
import org.eclipse.osee.account.admin.SubscriptionAdmin;

/**
 * @author Roberto E. Escobar
 */
@ApplicationPath("/")
public class AccountApplication extends Application {
   private final Set<Object> singletons = new HashSet<Object>();

   private AccountAdmin accountAdmin;
   private SubscriptionAdmin subscriptionAdmin;

   public void setAccountAdmin(AccountAdmin accountAdmin) {
      this.accountAdmin = accountAdmin;
   }

   public void setSubscriptionAdmin(SubscriptionAdmin subscriptionAdmin) {
      this.subscriptionAdmin = subscriptionAdmin;
   }

   public void start() {
      PageWriter writer = new PageWriter();
      AccountOps ops = new AccountOps(accountAdmin);

      singletons.add(new AccountsResource(ops));
      singletons.add(new SubscriptionsResource(subscriptionAdmin));
      singletons.add(new UnsubscribeResource(subscriptionAdmin, writer));
   }

   public void stop() {
      singletons.clear();
   }

   @Override
   public Set<Object> getSingletons() {
      return singletons;
   }

}

Back to the top