⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tax.java

📁 SUN的JAVA EE5源代码java_ee_sdk-5_03-preview-samples
💻 JAVA
字号:
/* * Tax.java * * Created on July 30, 2006, 1:36 AM * * To change this template, choose Tools | Template Manager * and open the template in the editor. */package webservices.ssl_jaxws_war;import javax.jws.WebService;import javax.jws.WebMethod;import javax.jws.WebParam;/** * Tax WebService endpoint using the Java EE 5 annotations.  * Used to demonstrate https over ssl on Java EE 5 platform. * * @version 1.0  27 July 2006 * @author Jagadesh Munta */@WebService(        name="Tax",        serviceName="TaxService",        targetNamespace="http://webservices/ssl_jaxws")public class Tax {    private static final double FED_TAX_RATE = 0.2; //20%    public Tax() {    }    /*     * Get the federal tax for given income and deductions     */    @WebMethod(operationName="getFedTax", action="urn:GetFedTax")    public double getFedTax(double income, double deductions) {        return ((income -  deductions) * FED_TAX_RATE);    }    }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -