Clover Coverage Report - ARESTC 0.1.7-SNAPSHOT
Coverage timestamp: Fri Aug 27 2010 19:12:04 CEST
0   59   0   -
0   8   -   0
0     -  
1    
 
  ARESTCError       Line # 29 0 - 0 0 - -1.0
 
No Tests
 
1    /*
2    *
3    * (C)opyright 2010, Nikolaos Georgosopoulos
4    *
5    * This file is part of ARESTC.
6   
7    ARESTC is free software: you can redistribute it and/or modify
8    it under the terms of the Lesser General Public License as published by
9    the Free Software Foundation, either version 3 of the License, or
10    (at your option) any later version.
11   
12    ARESTC is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15    GNU General Public License for more details.
16   
17    You should have received a copy of the Lesser General Public License
18    along with ARESTC. If not, see <http://www.gnu.org/licenses/>.
19   
20    */
21    package net.sf.arestc.core;
22   
23    import net.sf.arestc.core.services.RESTService;
24   
25    // TODO: Auto-generated Javadoc
26    /**
27    * The Interface ARESTCError.
28    */
 
29    public interface ARESTCError {
30   
31    /**
32    * Gets the code.
33    *
34    * @return the code
35    */
36    int getCode();
37   
38    /**
39    * Gets the command.
40    *
41    * @return the command
42    */
43    ConnectorCommand getCommand();
44   
45    /**
46    * Gets the description.
47    *
48    * @return the description
49    */
50    String getDescription();
51   
52    /**
53    * Gets the service.
54    *
55    * @return the service
56    */
57    RESTService getService();
58   
59    }