source: proiecte/ptvs/src/vnsim/applications/vitp/services/Service.java @ 31

Last change on this file since 31 was 31, checked in by (none), 14 years ago
File size: 622 bytes
Line 
1/************************************************************************************
2 * Copyright (C) 2008 by Politehnica University of Bucharest and Rutgers University
3 * All rights reserved.
4 * Refer to LICENSE for terms and conditions of use.
5 ***********************************************************************************/
6package vnsim.applications.vitp.services;
7
8
9import java.util.*;
10
11import vnsim.applications.vitp.utils.*;
12
13
14public abstract class Service {
15
16        //abstract class to be implemented by the services modules
17        public abstract VITPRequest satisfy(VITPRequest req, HashMap params);
18}
Note: See TracBrowser for help on using the repository browser.