MethodOrEventDataTransferObject.java
01 /*
02  *
03  * Licensed to the Apache Software Foundation (ASF) under one
04  * or more contributor license agreements.  See the NOTICE file
05  * distributed with this work for additional information
06  * regarding copyright ownership.  The ASF licenses this file
07  * to you under the Apache License, Version 2.0 (the
08  * "License"); you may not use this file except in compliance
09  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  */
21 package org.apache.qpid.management.domain.handler.impl;
22 
23 import java.util.List;
24 import java.util.Map;
25 
26 /**
27  * Simple transfer object used for holding method / event definition data.
28  
29  @author Andrea Gazzarini
30  */
31 public class MethodOrEventDataTransferObject
32 {
33     private final Map<String, Object> _definition;
34     private List<Map<String, Object>> _argumentDefinitions;
35     
36     /**
37      * Builds a new trasfer object with the given parameters.
38      
39      @param definition the method definition.
40      @param argumentDefinitions the arguments definitions.
41      */
42     public MethodOrEventDataTransferObject(
43             Map<String, Object> definition,
44             List<Map<String, Object>> argumentDefinitions)
45     {
46         this._definition = definition;
47         this._argumentDefinitions = argumentDefinitions;
48     }
49     
50     /**
51      * Returns the method definition.
52      
53      @return the method definition.
54      */
55     public Map<String, Object> getDefinition() {
56         return _definition;
57     }
58     
59     /**
60      * Returns the arguemnts definitions.
61      
62      @return the arguemnts definitions.
63      */
64     public List<Map<String, Object>> getArgumentsDefinitions() 
65     {
66         return _argumentDefinitions;
67     }
68 }