| 1 | /* WRS 2.0 |
|---|
| 2 | * Copyright (C) 2009 Anton Patrushev |
|---|
| 3 | * |
|---|
| 4 | * This program is free software; you can redistribute it and/or modify |
|---|
| 5 | * it under the terms of the GNU General Public License as published by |
|---|
| 6 | * the Free Software Foundation; either version 3 of the License, or |
|---|
| 7 | * (at your option) any later version. |
|---|
| 8 | * |
|---|
| 9 | * This program is distributed in the hope that it will be useful, |
|---|
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 12 | * GNU General Public License for more details. |
|---|
| 13 | * |
|---|
| 14 | * You should have received a copy of the GNU General Public License |
|---|
| 15 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
|---|
| 16 | */ |
|---|
| 17 | |
|---|
| 18 | package util; |
|---|
| 19 | |
|---|
| 20 | import java.util.HashMap; |
|---|
| 21 | |
|---|
| 22 | import model.Profile; |
|---|
| 23 | import model.Resource; |
|---|
| 24 | import model.Service; |
|---|
| 25 | import model.Template; |
|---|
| 26 | |
|---|
| 27 | public class ServiceRequest |
|---|
| 28 | { |
|---|
| 29 | private Profile profile; |
|---|
| 30 | private Service service; |
|---|
| 31 | private Resource resource; |
|---|
| 32 | private Template template; |
|---|
| 33 | private HashMap<String, Parameter> parameters; |
|---|
| 34 | |
|---|
| 35 | public ServiceRequest(Profile profile, Service service, Template template) |
|---|
| 36 | { |
|---|
| 37 | super(); |
|---|
| 38 | this.profile = profile; |
|---|
| 39 | this.service = service; |
|---|
| 40 | this.template = template; |
|---|
| 41 | this.parameters = new HashMap<String, Parameter>(); |
|---|
| 42 | } |
|---|
| 43 | |
|---|
| 44 | public HashMap<String, Parameter> getParameters() |
|---|
| 45 | { |
|---|
| 46 | return parameters; |
|---|
| 47 | } |
|---|
| 48 | |
|---|
| 49 | public Profile getProfile() |
|---|
| 50 | { |
|---|
| 51 | return profile; |
|---|
| 52 | } |
|---|
| 53 | |
|---|
| 54 | public Service getService() |
|---|
| 55 | { |
|---|
| 56 | return service; |
|---|
| 57 | } |
|---|
| 58 | |
|---|
| 59 | public Template getTemplate() |
|---|
| 60 | { |
|---|
| 61 | return template; |
|---|
| 62 | } |
|---|
| 63 | |
|---|
| 64 | public Resource getResource() |
|---|
| 65 | { |
|---|
| 66 | return resource; |
|---|
| 67 | } |
|---|
| 68 | |
|---|
| 69 | public void setResource(Resource resource) |
|---|
| 70 | { |
|---|
| 71 | this.resource = resource; |
|---|
| 72 | } |
|---|
| 73 | } |
|---|