View Javadoc
1   /**
2    * Copyright 2011 The Kuali Foundation Licensed under the
3    * Educational Community License, Version 2.0 (the "License"); you may
4    * not use this file except in compliance with the License. You may
5    * obtain a copy of the License at
6    *
7    * http://www.osedu.org/licenses/ECL-2.0
8    *
9    * Unless required by applicable law or agreed to in writing,
10   * software distributed under the License is distributed on an "AS IS"
11   * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12   * or implied. See the License for the specific language governing
13   * permissions and limitations under the License.
14   */
15  package org.kuali.mobility.push.service.rest;
16  
17  import org.kuali.mobility.push.entity.Device;
18  import org.kuali.mobility.push.service.rest.pojo.DeviceResponse;
19  import org.kuali.mobility.push.service.rest.pojo.DevicesResponse;
20  
21  import javax.ws.rs.*;
22  import javax.ws.rs.core.MediaType;
23  
24  /**
25   * @author Kuali Mobility Team (mobility.collab@kuali.org)
26   */
27  @Path("/")
28  public interface DeviceServiceRest {
29  
30      /** Device type constant for Android devices */
31      public static final String TYPE_ANDROID 	= "Android";
32  
33      /** Devices type constant for iOS devices */
34      public static final String TYPE_IOS			= "iOS";
35  
36      /** Device type constant for BlackBerry devices */
37      public static final String TYPE_BLACKBERRY 	= "BlackBerry";
38  
39      /** Device type constraint for Windows devices */
40      public static final String TYPE_WINDOWS		= "WindowsMobile";
41  
42      /**
43       * Persists a device and returns the updated device
44       * @param device
45       */
46      @POST
47      @Path("/saveDevice")
48      @Consumes({MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML})
49      @Produces({MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML})
50  	DeviceResponse saveDevice(Device device);
51  
52      /**
53       * Registers a device
54       * @param device
55       */
56      @POST
57      @Path("/registerDevice")
58      @Consumes({MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML})
59      @Produces({MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML})
60  	DeviceResponse registerDevice(Device device);
61  
62      /**
63       *
64       * @return
65       */
66      @GET
67      @Path("/devices")
68      @Produces({MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML})
69  	DevicesResponse getDevices();
70  
71      /**
72       * Finds a <code>Device</code> by the Object ID for the <code>Device</code>
73       * @param deviceId If of the <code>Device</code> to find.
74       * @return
75       */
76      @GET
77      @Path("/findDeviceByDeviceId")
78      @Produces({MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML})
79  	DeviceResponse findDeviceByDeviceId(@QueryParam(value="deviceId") String deviceId);
80  
81  
82  }