forked from emigonza/JavaPOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBaseService.java
More file actions
53 lines (49 loc) · 2.41 KB
/
Copy pathBaseService.java
File metadata and controls
53 lines (49 loc) · 2.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/////////////////////////////////////////////////////////////////////
//
// This software is provided "AS IS". The JavaPOS working group (including
// each of the Corporate members, contributors and individuals) MAKES NO
// REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE SOFTWARE,
// EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED
// WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NON-INFRINGEMENT. The JavaPOS working group shall not be liable for
// any damages suffered as a result of using, modifying or distributing this
// software or its derivatives.Permission to use, copy, modify, and distribute
// the software and its documentation for any purpose is hereby granted.
//
// BaseService
//
// Interface definining all capabilities, properties and methods
// that are common to all JavaPOS device services.
//
// Modification history
// ------------------------------------------------------------------
// 98-02-18 JavaPOS Release 1.2 BS
//
/////////////////////////////////////////////////////////////////////
package jpos.services;
import jpos.*;
public interface BaseService
{
// Properties
public String getCheckHealthText() throws JposException;
public boolean getClaimed() throws JposException;
public boolean getDeviceEnabled() throws JposException;
public void setDeviceEnabled(boolean deviceEnabled)
throws JposException;
public String getDeviceServiceDescription() throws JposException;
public int getDeviceServiceVersion() throws JposException;
public boolean getFreezeEvents() throws JposException;
public void setFreezeEvents(boolean freezeEvents) throws JposException;
public String getPhysicalDeviceDescription() throws JposException;
public String getPhysicalDeviceName() throws JposException;
public int getState() throws JposException;
// Methods
public void claim(int timeout) throws JposException;
public void close() throws JposException;
public void checkHealth(int level) throws JposException;
public void directIO(int command, int[] data, Object object)
throws JposException;
public void open(String logicalName, EventCallbacks cb)
throws JposException;
public void release() throws JposException;
}