View Javadoc

1   /*
2   Copyright 2010 James Pether Sörling Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 
3   	$Id
4   */
5   
6   package com.hack23.cia.service.api.admin;
7   
8   import com.hack23.cia.model.application.impl.admin.MonitorActionEvent.Operation;
9   
10  /***
11   * The Class MonitorRequest.
12   */
13  public class MonitorRequest extends AbstractAdminRequest {
14  
15      /*** The Constant serialVersionUID. */
16      private static final long serialVersionUID = 1L;
17  
18      /*** The operation. */
19      private final Operation operation;
20  
21      /***
22       * Instantiates a new monitor request.
23       *
24       * @param userSessionId the user session id
25       * @param operation the operation
26       */
27      public MonitorRequest(final Long userSessionId, final Operation operation) {
28          super(userSessionId);
29          this.operation = operation;
30      }
31  
32      /***
33       * Gets the operation.
34       *
35       * @return the operation
36       */
37      public final Operation getOperation() {
38          return operation;
39      }
40  
41  }