📄 ccservices.java
字号:
/*
* @author : Neelesh
* @Version : 1.0
*
* Development Environment : Oracle9i JDeveloper
* Name of the File : CCServices.java
* Creation/Modification History :
*
* Neelesh 04-Apr-2003 Created
*
*/
package oracle.otnsamples.ws;
/**
* This interface defines the credit card services. The implementations are
* expected to provide the actual services.
*
* @author Neelesh
* @version 2.0
*/
public interface CCServices {
/**
* The method validates a credit card number. The underlying validation
* mechanism depends on the implementation provided
*
* @param <b>cardNumber</b> Credit card number.
*
* @throws <b>CCException</b> Exception thrown if the card number is invalid
* .
*/
public void validateCard(String cardNumber) throws CCException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -