📄 jndinames.java
字号:
/* Copyright 2004 Sun Microsystems, Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - Redistribution in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. Neither the name of Sun Microsystems, Inc. or the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission. This software is provided "AS IS," without a warranty of any kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. You acknowledge that Software is not designed, licensed or intended for use in the design, construction, operation or maintenance of any nuclear facility. $Id: JNDINames.java,v 1.3 2003/11/21 21:23:56 smitha Exp $ */package com.sun.j2ee.blueprints.opc;/** * JNDI names of various entities used by the OPC */public class JNDINames { // JNDI name of Process Manager EJB public static final String PM_EJB = "java:comp/env/ejb/local/processmanager/ProcessManager"; // JNDI name of PO EJB public static final String PO_EJB = "java:comp/env/ejb/local/purchaseorder/PurchaseOrder"; // JNDI name of Unique Id Generator EJB public static final String UIDGEN_EJB = "java:comp/env/ejb/local/uidgen/UniqueIdGenerator"; // JNDI name of OPC Queue Connection Factory public static final String OPC_QUEUE_CONNECTION_FACTORY = "java:comp/env/jms/opc/QueueConnectionFactory"; // JNDI name of OPC Work Flow Manager MDB Queue public static final String WORKFLOW_MGR_MDB_QUEUE= "java:comp/env/jms/opc/WorkFlowMgrQueue"; // JNDI name of OPC Order Filler MDB Queue public static final String ORDER_FILLER_MDB_QUEUE= "java:comp/env/jms/opc/OrderFillerQueue"; // JNDI Name for Broker's queue public static final String WS_BROKER_MDB_QUEUE = "java:comp/env/jms/opc/WebServiceBrokerQueue"; // JNDI Name for CRM queue public static final String CRM_MDB_QUEUE = "java:comp/env/jms/opc/CRMQueue"; // JNDI name for DOCTYPE to be set in JMS property public static final String DOC_TYPE = "DOCUMENT_TYPE"; // JNDI Name for PO document public static final String PO_DOCUMENT = "PO_DOCUMENT"; // JNDI Name for mail document public static final String MAIL_DOCUMENT = "MAIL_DOCUMENT"; // JNDI names for the supplier order doc types public static final String ACTIVITY_ORDER = "ACTIVITY_ORDER"; public static final String LODGING_ORDER = "LODGING_ORDER"; public static final String AIRLINE_ORDER = "AIRLINE_ORDER"; // JNDI Names for invoice document public static final String INVOICE_DOCUMENT = "INVOICE_DOCUMENT"; // JNDI names for invoice sender type public static final String ACTIVITY_INVOICE = "ACTIVITY_INVOICE"; public static final String LODGING_INVOICE = "LODGING_INVOICE"; public static final String AIRLINE_INVOICE = "AIRLINE_INVOICE"; // JNDI names for Supplier Factory Classes public static final String ACTIVITY_SUPPLIER_CLIENT = "java:comp/env/param/ActivitySupplier"; public static final String LODGING_SUPPLIER_CLIENT = "java:comp/env/param/LodgingSupplier"; public static final String AIRLINE_SUPPLIER_CLIENT = "java:comp/env/param/AirlineSupplier"; // JNDI Names for supplier services public static final String LODGING_SERVICE_NAME = "java:comp/env/service/LodgingPOService"; public static final String ACTIVITY_SERVICE_NAME = "java:comp/env/service/ActivityPOService"; public static final String AIRLINE_SERVICE_NAME = "java:comp/env/service/AirlinePOService"; // JNDI Name for credit card service public static final String CREDIT_CARD_SERVICE_NAME = "java:comp/env/service/CreditCardService"; // JNDI Names for endpoints public static final String LODGING_SERVICE_URL = "java:comp/env/param/LodgingServiceURL"; public static final String ACTIVITY_SERVICE_URL = "java:comp/env/param/ActivityServiceURL"; public static final String AIRLINE_SERVICE_URL = "java:comp/env/param/AirlineServiceURL"; public static final String CREDIT_CARD_SERVICE_URL = "java:comp/env/param/CreditCardServiceURL"; //JNDI name for the environment entry to enable email notifications public static final String SEND_MAIL = "java:comp/env/param/SendMail";}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -