├── .mvn ├── .gitignore ├── wrapper │ ├── .gitignore │ └── maven-wrapper.properties └── jvm.config.error-prone ├── mq ├── src │ ├── share │ │ ├── lib │ │ │ ├── images │ │ │ │ ├── admin │ │ │ │ │ ├── .gitkeep │ │ │ │ │ ├── Add24.gif │ │ │ │ │ ├── dot.gif │ │ │ │ │ ├── Pause24.gif │ │ │ │ │ ├── Play24.gif │ │ │ │ │ ├── folder.gif │ │ │ │ │ ├── AppIcon48x.gif │ │ │ │ │ ├── Broker16X.gif │ │ │ │ │ ├── BrokerX16X.gif │ │ │ │ │ ├── Delete24.gif │ │ │ │ │ ├── Purge24x.gif │ │ │ │ │ ├── Refresh24.gif │ │ │ │ │ ├── Restart24x.gif │ │ │ │ │ ├── AboutBox48x.gif │ │ │ │ │ ├── ExpandAll24x.gif │ │ │ │ │ ├── Properties24.gif │ │ │ │ │ ├── Shutdown24x.gif │ │ │ │ │ ├── BrokerQuery24X.gif │ │ │ │ │ ├── CollapseAll24x.gif │ │ │ │ │ ├── ObjectStore16x.gif │ │ │ │ │ ├── ObjectStoreX16X.gif │ │ │ │ │ ├── Preferences24.gif │ │ │ │ │ ├── ServiceList16x.gif │ │ │ │ │ ├── splash_openmq.gif │ │ │ │ │ ├── AdminConnectBroker24x.gif │ │ │ │ │ ├── CollectionOfBrokers16x.gif │ │ │ │ │ ├── AdminDisConnectBroker24x.gif │ │ │ │ │ ├── BrokerDestinationList16x.gif │ │ │ │ │ ├── CollectionOfObjectStores16x.gif │ │ │ │ │ ├── AdminConnectToObjectStore24x.gif │ │ │ │ │ ├── AdminDisConnectToObjectStore24x.gif │ │ │ │ │ ├── ObjectStoreCFDestination16xList.gif │ │ │ │ │ └── GNUmakefile │ │ │ │ └── GNUmakefile │ │ │ └── GNUmakefile │ │ ├── java │ │ │ ├── visualvm │ │ │ │ ├── .hgignore │ │ │ │ ├── src │ │ │ │ │ └── com │ │ │ │ │ │ └── sun │ │ │ │ │ │ └── messaging │ │ │ │ │ │ └── visualvm │ │ │ │ │ │ ├── ui │ │ │ │ │ │ ├── resources │ │ │ │ │ │ │ ├── broker.gif │ │ │ │ │ │ │ ├── folder.gif │ │ │ │ │ │ │ ├── GlassFish.png │ │ │ │ │ │ │ ├── cli_badge.png │ │ │ │ │ │ │ ├── consumers.gif │ │ │ │ │ │ │ ├── producers.gif │ │ │ │ │ │ │ ├── services.gif │ │ │ │ │ │ │ ├── brokerdown.gif │ │ │ │ │ │ │ ├── brokerother.gif │ │ │ │ │ │ │ ├── connections.gif │ │ │ │ │ │ │ ├── dukeplug16.gif │ │ │ │ │ │ │ ├── brokerrunning.gif │ │ │ │ │ │ │ ├── transactions.gif │ │ │ │ │ │ │ ├── brokerconnected.gif │ │ │ │ │ │ │ └── brokerdisconnected.gif │ │ │ │ │ │ ├── ChartUpdater.java │ │ │ │ │ │ └── MQUIEventListener.java │ │ │ │ │ │ └── datasource │ │ │ │ │ │ └── MQPluginException.java │ │ │ │ ├── manifest.mf │ │ │ │ ├── .project │ │ │ │ ├── .settings │ │ │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ │ └── nbproject │ │ │ │ │ ├── platform.properties │ │ │ │ │ └── project.properties │ │ │ ├── examples │ │ │ │ ├── jmsbridge │ │ │ │ │ ├── mqtomq │ │ │ │ │ │ └── passfile │ │ │ │ │ └── README │ │ │ │ ├── ums │ │ │ │ │ ├── get │ │ │ │ │ │ └── README │ │ │ │ │ └── ajax │ │ │ │ │ │ └── README │ │ │ │ ├── applications │ │ │ │ │ ├── mqping │ │ │ │ │ │ └── GNUmakefile │ │ │ │ │ ├── qbrowser │ │ │ │ │ │ └── GNUmakefile │ │ │ │ │ ├── simplechat │ │ │ │ │ │ └── GNUmakefile │ │ │ │ │ ├── uclient │ │ │ │ │ │ └── GNUmakefile │ │ │ │ │ ├── GNUmakefile │ │ │ │ │ └── mqapplet │ │ │ │ │ │ └── mqapplet.html │ │ │ │ ├── jms20 │ │ │ │ │ ├── messagegetbody │ │ │ │ │ │ └── GNUmakefile │ │ │ │ │ ├── asynctopicconsumer │ │ │ │ │ │ └── GNUmakefile │ │ │ │ │ ├── selector │ │ │ │ │ │ └── GNUmakefile │ │ │ │ │ ├── asyncsend │ │ │ │ │ │ └── GNUmakefile │ │ │ │ │ ├── messageheader │ │ │ │ │ │ └── GNUmakefile │ │ │ │ │ ├── deliverycount │ │ │ │ │ │ └── GNUmakefile │ │ │ │ │ ├── deliverydelay │ │ │ │ │ │ └── GNUmakefile │ │ │ │ │ ├── messageproperties │ │ │ │ │ │ └── GNUmakefile │ │ │ │ │ ├── syncqueue │ │ │ │ │ │ ├── GNUmakefile │ │ │ │ │ │ └── MyObject.java │ │ │ │ │ ├── sharedsub │ │ │ │ │ │ └── GNUmakefile │ │ │ │ │ └── GNUmakefile │ │ │ │ ├── helloworld │ │ │ │ │ ├── helloworldmessage │ │ │ │ │ │ └── GNUmakefile │ │ │ │ │ ├── helloworldmessagejndi │ │ │ │ │ │ └── GNUmakefile │ │ │ │ │ └── GNUmakefile │ │ │ │ ├── GNUmakefile │ │ │ │ ├── jmx │ │ │ │ │ └── GNUmakefile │ │ │ │ ├── stomp │ │ │ │ │ ├── README │ │ │ │ │ └── ruby │ │ │ │ │ │ └── README │ │ │ │ ├── jaxm │ │ │ │ │ ├── GNUmakefile │ │ │ │ │ └── SOAPEchoServlet.java │ │ │ │ ├── monitoring │ │ │ │ │ ├── GNUmakefile │ │ │ │ │ └── MetricsPrinter.java │ │ │ │ └── jms │ │ │ │ │ └── sample.dtd │ │ │ └── webapps │ │ │ │ └── ums │ │ │ │ ├── umsArchitecture.jpg │ │ │ │ └── META-INF │ │ │ │ └── context.xml │ │ ├── security │ │ │ ├── jmqadmin.policy │ │ │ ├── jmqexamples.policy │ │ │ ├── passwd │ │ │ └── GNUmakefile │ │ ├── install │ │ │ ├── default.rpmoptions │ │ │ ├── install │ │ │ │ ├── dependency │ │ │ │ │ ├── index-zip-unix.txt │ │ │ │ │ ├── index-zip.txt │ │ │ │ │ ├── index.txt │ │ │ │ │ └── legacy │ │ │ │ │ │ └── mq_37 │ │ │ │ │ │ └── index.txt │ │ │ │ └── templates │ │ │ │ │ ├── Splash.jpg │ │ │ │ │ ├── zip │ │ │ │ │ ├── Splash.jpg │ │ │ │ │ ├── Splash_de_DE.jpg │ │ │ │ │ ├── Splash_es_ES.jpg │ │ │ │ │ ├── Splash_fr_FR.jpg │ │ │ │ │ ├── Splash_ja_JP.jpg │ │ │ │ │ ├── Splash_ko_KR.jpg │ │ │ │ │ ├── Splash_zh_CN.jpg │ │ │ │ │ ├── Splash_zh_TW.jpg │ │ │ │ │ ├── Splash.properties │ │ │ │ │ ├── Splash_es_ES.properties │ │ │ │ │ ├── Splash_fr_FR.properties │ │ │ │ │ ├── Splash_it_IT.properties │ │ │ │ │ ├── Splash_de_DE.properties │ │ │ │ │ ├── Splash_zh_TW.properties │ │ │ │ │ ├── Splash_ja_JP.properties │ │ │ │ │ ├── Splash_zh_CN.properties │ │ │ │ │ ├── Splash_ko_KR.properties │ │ │ │ │ └── Splash_pt_BR.properties │ │ │ │ │ ├── Splash_de_DE.jpg │ │ │ │ │ ├── Splash_es_ES.jpg │ │ │ │ │ ├── Splash_fr_FR.jpg │ │ │ │ │ ├── Splash_it_IT.jpg │ │ │ │ │ ├── Splash_ja_JP.jpg │ │ │ │ │ ├── Splash_ko_KR.jpg │ │ │ │ │ ├── Splash_pt_BR.jpg │ │ │ │ │ ├── Splash_zh_CN.jpg │ │ │ │ │ ├── Splash_zh_TW.jpg │ │ │ │ │ ├── Splash.properties │ │ │ │ │ ├── Splash_es_ES.properties │ │ │ │ │ ├── Splash_fr_FR.properties │ │ │ │ │ ├── Splash_it_IT.properties │ │ │ │ │ ├── Splash_de_DE.properties │ │ │ │ │ ├── Splash_zh_TW.properties │ │ │ │ │ ├── Splash_ja_JP.properties │ │ │ │ │ ├── Splash_zh_CN.properties │ │ │ │ │ ├── Splash_ko_KR.properties │ │ │ │ │ └── Splash_pt_BR.properties │ │ │ ├── sys │ │ │ │ ├── mq │ │ │ │ │ ├── bin │ │ │ │ │ │ └── README │ │ │ │ │ └── GNUmakefile │ │ │ │ └── GNUmakefile │ │ │ ├── uninstaller.properties │ │ │ ├── install_regonly.properties │ │ │ ├── mquninstall │ │ │ ├── mquninstall.bat │ │ │ ├── install.properties-zip.unix │ │ │ ├── install_regonly.properties.windows │ │ │ ├── GNUmakefile │ │ │ ├── README │ │ │ ├── install.properties │ │ │ ├── install.properties.linux │ │ │ └── install.properties.windows │ │ ├── props │ │ │ ├── GNUmakefile │ │ │ ├── admin │ │ │ │ └── GNUmakefile │ │ │ └── broker │ │ │ │ └── install.properties │ │ ├── GNUmakefile │ │ ├── cclient │ │ │ ├── net │ │ │ │ └── net_srcs.mk │ │ │ ├── io │ │ │ │ └── SocketTest.hpp │ │ │ ├── error │ │ │ │ └── error_srcs.mk │ │ │ ├── client │ │ │ │ ├── ReceiveMode.h │ │ │ │ ├── auth │ │ │ │ │ └── auth_srcs.mk │ │ │ │ └── protocol │ │ │ │ │ └── protocol_srcs.mk │ │ │ ├── util │ │ │ │ └── util_srcs.mk │ │ │ ├── serial │ │ │ │ └── serial_srcs.mk │ │ │ ├── containers │ │ │ │ └── containers_srcs.mk │ │ │ └── cshim │ │ │ │ └── shimTest.h │ │ └── etc │ │ │ ├── GNUmakefile │ │ │ └── registry │ │ │ └── servicetag.xml │ ├── solaris │ │ ├── iasevalbin │ │ │ └── jdk.env │ │ └── etc │ │ │ ├── imqenv.conf │ │ │ └── GNUmakefile │ ├── README │ ├── buildant │ │ ├── README │ │ ├── serverfiles.txt │ │ └── excludefiles.txt │ ├── doc │ │ └── en │ │ │ └── README-lib │ └── win32 │ │ ├── iasevalbin │ │ ├── jdk-env-ri.bat │ │ └── jdk-env.bat │ │ ├── GNUmakefile │ │ ├── bin │ │ └── GNUmakefile │ │ └── etc │ │ └── GNUmakefile ├── main │ ├── .gitignore │ ├── mq-ums │ │ ├── src │ │ │ ├── test │ │ │ │ ├── needs.assertj-core │ │ │ │ └── needs.junit-jupiter-api │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── sun │ │ │ │ └── messaging │ │ │ │ └── xml │ │ │ │ └── MessageTransformerException.java │ │ └── lombok.config │ ├── mq-client │ │ └── src │ │ │ ├── test │ │ │ ├── needs.assertj-core │ │ │ ├── needs.mockito-core │ │ │ ├── needs.junit-jupiter-api │ │ │ └── needs.mockito-junit-jupiter │ │ │ └── main │ │ │ ├── resources │ │ │ └── com │ │ │ │ └── sun │ │ │ │ └── messaging │ │ │ │ ├── AdminConnectionFactory_labels.properties │ │ │ │ └── AdminConnectionFactory_defaults.properties │ │ │ └── java │ │ │ └── com │ │ │ └── sun │ │ │ └── messaging │ │ │ ├── jmq │ │ │ ├── jmsclient │ │ │ │ └── ContainerType.java │ │ │ └── jmsspi │ │ │ │ └── JMSConstants.java │ │ │ └── package.html │ ├── mq-logger │ │ └── src │ │ │ ├── test │ │ │ ├── needs.mockito-core │ │ │ ├── needs.junit-jupiter-api │ │ │ └── needs.mockito-junit-jupiter │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── sun │ │ │ └── messaging │ │ │ └── jmq │ │ │ └── util │ │ │ └── log │ │ │ └── LogRecord.java │ ├── mq-share │ │ ├── src │ │ │ └── test │ │ │ │ ├── needs.assertj-core │ │ │ │ └── needs.junit-jupiter-api │ │ ├── lombok.config │ │ └── exclude.xml │ ├── mqcomm-io │ │ ├── src │ │ │ └── test │ │ │ │ ├── needs.assertj-core │ │ │ │ └── needs.junit-jupiter-api │ │ ├── lombok.config │ │ └── exclude.xml │ ├── mqcomm-util │ │ ├── src │ │ │ ├── test │ │ │ │ ├── needs.assertj-core │ │ │ │ ├── needs.mockito-core │ │ │ │ ├── needs.junit-jupiter-api │ │ │ │ ├── needs.junit-jupiter-params │ │ │ │ └── needs.mockito-junit-jupiter │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── sun │ │ │ │ └── messaging │ │ │ │ └── jmq │ │ │ │ └── util │ │ │ │ ├── lists │ │ │ │ └── Ordered.java │ │ │ │ ├── IDLock.java │ │ │ │ └── synchronizer │ │ │ │ └── CloseInProgressCallback.java │ │ └── lombok.config │ ├── jmsra │ │ ├── mqjmsra-ra │ │ │ ├── src │ │ │ │ ├── test │ │ │ │ │ ├── needs.assertj-core │ │ │ │ │ ├── needs.junit-jupiter-api │ │ │ │ │ └── needs.junit-jupiter-params │ │ │ │ └── main │ │ │ │ │ └── resources │ │ │ │ │ └── com │ │ │ │ │ └── sun │ │ │ │ │ └── messaging │ │ │ │ │ └── jms │ │ │ │ │ ├── blc │ │ │ │ │ └── LogStrings.properties │ │ │ │ │ └── ra │ │ │ │ │ └── LogStrings.properties │ │ │ └── lombok.config │ │ └── mqjmsra-api │ │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── sun │ │ │ └── messaging │ │ │ └── jms │ │ │ └── ra │ │ │ └── api │ │ │ ├── JMSRASessionAdapter.java │ │ │ ├── JMSRAEndpointConsumer.java │ │ │ └── JMSRAOnMessageRunner.java │ ├── bridge │ │ ├── mqbridge-admin │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── needs.assertj-core │ │ │ │ ├── needs.junit-jupiter-api │ │ │ │ └── needs.junit-jupiter-params │ │ ├── mqbridge-api │ │ │ ├── src │ │ │ │ ├── test │ │ │ │ │ ├── needs.assertj-core │ │ │ │ │ ├── needs.junit-jupiter-api │ │ │ │ │ └── needs.junit-jupiter-params │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── sun │ │ │ │ │ └── messaging │ │ │ │ │ └── bridge │ │ │ │ │ └── api │ │ │ │ │ ├── StompSubscriber.java │ │ │ │ │ ├── StompDestination.java │ │ │ │ │ └── StompFrameMessageFactory.java │ │ │ └── lombok.config │ │ ├── mqbridge-jms │ │ │ ├── src │ │ │ │ └── test │ │ │ │ │ ├── needs.mockito-core │ │ │ │ │ ├── needs.junit-jupiter-api │ │ │ │ │ └── needs.mockito-junit-jupiter │ │ │ └── lombok.config │ │ └── mqbridge-stomp │ │ │ └── src │ │ │ └── test │ │ │ ├── needs.assertj-core │ │ │ └── needs.junit-jupiter-api │ ├── mq-admin │ │ └── mqadmin-cli │ │ │ ├── src │ │ │ └── test │ │ │ │ ├── needs.assertj-core │ │ │ │ └── needs.junit-jupiter-api │ │ │ ├── lombok.config │ │ │ └── exclude.xml │ ├── mq-broker │ │ ├── mq-cluster │ │ │ └── src │ │ │ │ ├── test │ │ │ │ ├── needs.assertj-core │ │ │ │ └── needs.junit-jupiter-params │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── sun │ │ │ │ └── messaging │ │ │ │ └── jmq │ │ │ │ └── jmsserver │ │ │ │ └── multibroker │ │ │ │ └── CallbackEvent.java │ │ ├── mqbroker-core │ │ │ ├── src │ │ │ │ ├── test │ │ │ │ │ ├── needs.assertj-core │ │ │ │ │ ├── needs.junit-jupiter-api │ │ │ │ │ └── needs.junit-jupiter-params │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── sun │ │ │ │ │ └── messaging │ │ │ │ │ └── jmq │ │ │ │ │ └── jmsserver │ │ │ │ │ ├── net │ │ │ │ │ └── ProtocolCallback.java │ │ │ │ │ ├── tlsutil │ │ │ │ │ └── SSLPropertyMap.java │ │ │ │ │ ├── pool │ │ │ │ │ └── package.html │ │ │ │ │ ├── service │ │ │ │ │ ├── ConnectionClosedListener.java │ │ │ │ │ └── ServiceRestrictionListener.java │ │ │ │ │ └── persist │ │ │ │ │ └── api │ │ │ │ │ └── StoreSessionReaperListener.java │ │ │ └── lombok.config │ │ └── mqpersist-file │ │ │ └── exclude.xml │ ├── helpfiles │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ ├── images │ │ │ ├── console.gif │ │ │ ├── Broker16X.gif │ │ │ ├── BrokerX16X.gif │ │ │ ├── AppIcon16xCDE.gif │ │ │ ├── ObjectStore16x.gif │ │ │ └── ObjectStoreX16X.gif │ │ │ └── en │ │ │ └── connection_factory_prop.htm │ ├── mq-direct │ │ ├── lombok.config │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── sun │ │ │ └── messaging │ │ │ └── jmq │ │ │ └── jmsservice │ │ │ └── HandOffQueue.java │ ├── mqjmx-api │ │ └── lombok.config │ ├── mq-packager-opensource │ │ └── lombok.config │ ├── http-tunnel │ │ └── mqhttp-tunnel │ │ │ └── lombok.config │ ├── lombok.config │ └── copyright-exclude ├── .gitignore ├── .spotbugs │ └── spotbugs.properties └── .jakartaee-catalog.xml ├── .github ├── workflows-etc │ └── it-ldap │ │ ├── admin.pass │ │ ├── admin-ldap.pass │ │ └── ldap-data.ldif └── dependabot.yml ├── .gitignore ├── docs ├── mq-shared-doc-resources │ └── src │ │ └── main │ │ └── resources │ │ ├── templates │ │ ├── menu.ftl │ │ └── page.ftl │ │ ├── assets │ │ ├── assets │ │ │ ├── css │ │ │ │ └── print.scss │ │ │ └── images │ │ │ │ └── header-bkg.jpg │ │ ├── README.md │ │ └── img │ │ │ └── eclipse_foundation_logo_tiny.png │ │ └── jbake.properties ├── mq-tech-over │ └── src │ │ └── main │ │ └── jbake │ │ ├── assets │ │ ├── img │ │ │ ├── to_mom.png │ │ │ ├── to_2domains.png │ │ │ ├── to_complexq.png │ │ │ ├── to_monitor.png │ │ │ ├── to_replyto.png │ │ │ ├── to_rpc_mom.png │ │ │ ├── to_simpleq.png │ │ │ ├── to_admintools.png │ │ │ ├── to_hacluster.png │ │ │ ├── to_middleware.png │ │ │ ├── to_secmanager.png │ │ │ ├── to_brokercluster.png │ │ │ ├── to_complextopic.png │ │ │ ├── to_mdbmessaging.png │ │ │ ├── to_msgdelivery.png │ │ │ ├── to_persistsvcs.png │ │ │ ├── to_simpletopic.png │ │ │ ├── to_cc-peer-brokers.png │ │ │ ├── to_jmsappelements.png │ │ │ ├── to_mqservicesimple.png │ │ │ ├── to_conventionalcluster.png │ │ │ └── to_clusterinfrastructure.png │ │ └── _config.yml │ │ └── content │ │ └── lot.adoc ├── mq-admin-guide │ └── src │ │ └── main │ │ └── jbake │ │ ├── assets │ │ ├── img │ │ │ ├── adm_http.png │ │ │ ├── brokers.png │ │ │ ├── services.png │ │ │ ├── to_myjaas.png │ │ │ ├── adm_monitor.png │ │ │ ├── adm_msgflow.png │ │ │ ├── addbrokerdlog.png │ │ │ ├── adm_jaasfiles.png │ │ │ ├── adm_jmxconnect.png │ │ │ ├── adm_mqservice.png │ │ │ ├── adm_protocols.png │ │ │ ├── adm_secmanager.png │ │ │ ├── adminobjects.png │ │ │ ├── connectbkrdlog.png │ │ │ ├── helpoverview.png │ │ │ ├── startupscreen.png │ │ │ ├── addobjstoredlog.png │ │ │ ├── addphysdestdlog.png │ │ │ ├── adm_configfiles.png │ │ │ ├── adm_local-remote.png │ │ │ ├── adm_persistsvcs.png │ │ │ ├── destadminobjects.png │ │ │ ├── jmsservpropsdlog.png │ │ │ ├── queuebrowsermain.png │ │ │ ├── to_jaaselements.png │ │ │ ├── addcfadminobjdlog.png │ │ │ ├── adm_jmxconnect_wcf.png │ │ │ ├── physdestpropsdlog.png │ │ │ ├── addqueueadminobjdlog.png │ │ │ ├── adm_jmxconnect_wregistry.png │ │ │ └── queuebrowsermsgdetails.png │ │ └── _config.yml │ │ └── content │ │ ├── part-introduction.adoc │ │ ├── part-appendixes.adoc │ │ └── part-reference.adoc ├── mq-dev-guide-java │ └── src │ │ └── main │ │ └── jbake │ │ └── assets │ │ ├── img │ │ ├── dev-defer.png │ │ ├── dev-publish.png │ │ ├── jax_soapmsg.png │ │ ├── jax_soapobj.png │ │ ├── jax_soaporg.png │ │ ├── jax_faultorg.png │ │ ├── jax_interop1.png │ │ ├── jax_soapwatt.png │ │ ├── jax_msglayers1.png │ │ └── jax_ppconnection.png │ │ └── _config.yml ├── mq-release-notes │ └── src │ │ └── main │ │ └── jbake │ │ └── assets │ │ ├── img │ │ └── umsarchitecture.png │ │ └── _config.yml ├── mq-dev-guide-c │ └── src │ │ └── main │ │ └── jbake │ │ └── assets │ │ └── _config.yml └── mq-dev-guide-jmx │ └── src │ └── main │ └── jbake │ └── assets │ └── _config.yml ├── README.md └── .git-blame-ignore-revs /.mvn/.gitignore: -------------------------------------------------------------------------------- 1 | jvm.config 2 | 3 | -------------------------------------------------------------------------------- /mq/src/share/lib/images/admin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mq/main/.gitignore: -------------------------------------------------------------------------------- 1 | dash-summary.txt 2 | -------------------------------------------------------------------------------- /mq/main/mq-ums/src/test/needs.assertj-core: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mq/main/mq-client/src/test/needs.assertj-core: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mq/main/mq-client/src/test/needs.mockito-core: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mq/main/mq-logger/src/test/needs.mockito-core: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mq/main/mq-share/src/test/needs.assertj-core: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mq/main/mq-ums/src/test/needs.junit-jupiter-api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mq/main/mqcomm-io/src/test/needs.assertj-core: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mq/main/mqcomm-util/src/test/needs.assertj-core: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mq/main/mqcomm-util/src/test/needs.mockito-core: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mq/src/share/java/visualvm/.hgignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /mq/src/solaris/iasevalbin/jdk.env: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /mq/.gitignore: -------------------------------------------------------------------------------- 1 | ### Other ### 2 | binary/ 3 | dist/ 4 | -------------------------------------------------------------------------------- /mq/main/jmsra/mqjmsra-ra/src/test/needs.assertj-core: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mq/main/mq-client/src/test/needs.junit-jupiter-api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mq/main/mq-logger/src/test/needs.junit-jupiter-api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mq/main/mq-share/src/test/needs.junit-jupiter-api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mq/main/mqcomm-io/src/test/needs.junit-jupiter-api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mq/main/mqcomm-util/src/test/needs.junit-jupiter-api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mq/main/bridge/mqbridge-admin/src/test/needs.assertj-core: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mq/main/bridge/mqbridge-api/src/test/needs.assertj-core: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mq/main/bridge/mqbridge-jms/src/test/needs.mockito-core: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mq/main/bridge/mqbridge-stomp/src/test/needs.assertj-core: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mq/main/jmsra/mqjmsra-ra/src/test/needs.junit-jupiter-api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mq/main/mq-admin/mqadmin-cli/src/test/needs.assertj-core: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mq/main/mq-broker/mq-cluster/src/test/needs.assertj-core: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mq/main/mq-client/src/test/needs.mockito-junit-jupiter: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mq/main/mq-logger/src/test/needs.mockito-junit-jupiter: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mq/main/mqcomm-util/src/test/needs.junit-jupiter-params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mq/main/mqcomm-util/src/test/needs.mockito-junit-jupiter: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mq/main/bridge/mqbridge-admin/src/test/needs.junit-jupiter-api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mq/main/bridge/mqbridge-api/src/test/needs.junit-jupiter-api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mq/main/bridge/mqbridge-api/src/test/needs.junit-jupiter-params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mq/main/bridge/mqbridge-jms/src/test/needs.junit-jupiter-api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mq/main/bridge/mqbridge-stomp/src/test/needs.junit-jupiter-api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mq/main/jmsra/mqjmsra-ra/src/test/needs.junit-jupiter-params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mq/main/mq-admin/mqadmin-cli/src/test/needs.junit-jupiter-api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mq/main/mq-broker/mqbroker-core/src/test/needs.assertj-core: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mq/src/README: -------------------------------------------------------------------------------- 1 | For build instructions, see ./../README.build 2 | -------------------------------------------------------------------------------- /mq/main/bridge/mqbridge-admin/src/test/needs.junit-jupiter-params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mq/main/bridge/mqbridge-jms/src/test/needs.mockito-junit-jupiter: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mq/main/mq-broker/mq-cluster/src/test/needs.junit-jupiter-params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mq/main/mq-broker/mqbroker-core/src/test/needs.junit-jupiter-api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mq/main/mq-broker/mqbroker-core/src/test/needs.junit-jupiter-params: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mq/src/share/security/jmqadmin.policy: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.github/workflows-etc/it-ldap/admin.pass: -------------------------------------------------------------------------------- 1 | imq.imqcmd.password=admin 2 | -------------------------------------------------------------------------------- /mq/src/share/security/jmqexamples.policy: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.mvn/wrapper/.gitignore: -------------------------------------------------------------------------------- 1 | MavenWrapperDownloader.java 2 | maven-wrapper.jar 3 | -------------------------------------------------------------------------------- /.github/workflows-etc/it-ldap/admin-ldap.pass: -------------------------------------------------------------------------------- 1 | imq.imqcmd.password=mqadmiin2 2 | -------------------------------------------------------------------------------- /mq/src/share/java/examples/jmsbridge/mqtomq/passfile: -------------------------------------------------------------------------------- 1 | imq.bridge.admin.password=admin 2 | -------------------------------------------------------------------------------- /mq/.spotbugs/spotbugs.properties: -------------------------------------------------------------------------------- 1 | reportTransientFieldOfNonSerializableClass=true 2 | 3 | -------------------------------------------------------------------------------- /mq/src/share/install/default.rpmoptions: -------------------------------------------------------------------------------- 1 | INSTALL --replacepkgs --nodeps --replacefiles 2 | -------------------------------------------------------------------------------- /mq/src/buildant/README: -------------------------------------------------------------------------------- 1 | build.xml is in $TOP/main/mq-packager-opensource/build.xml 2 | 3 | 4 | -------------------------------------------------------------------------------- /mq/src/share/install/install/dependency/index-zip-unix.txt: -------------------------------------------------------------------------------- 1 | MessageQueue.xml 2 | JavaHelpRuntime.xml 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ### Maven ### 2 | target/ 3 | pom.xml.versionsBackup 4 | 5 | ### Other ### 6 | *.class 7 | 8 | -------------------------------------------------------------------------------- /mq/src/share/install/install/dependency/index-zip.txt: -------------------------------------------------------------------------------- 1 | MessageQueue.xml 2 | NSS.xml 3 | JavaHelpRuntime.xml 4 | -------------------------------------------------------------------------------- /mq/src/buildant/serverfiles.txt: -------------------------------------------------------------------------------- 1 | com/sun/messaging/jmq/jmsserver/**/**.java 2 | com/sun/messaging/jmq/util/lists/**/**.java 3 | -------------------------------------------------------------------------------- /docs/mq-shared-doc-resources/src/main/resources/templates/menu.ftl: -------------------------------------------------------------------------------- 1 | <#-- a menu bar template fragment included in the page template --> -------------------------------------------------------------------------------- /mq/src/share/install/install/dependency/index.txt: -------------------------------------------------------------------------------- 1 | JDK5.xml 2 | MessageQueue.xml 3 | NSS.xml 4 | NSPR.xml 5 | JavaHelpRuntime.xml 6 | -------------------------------------------------------------------------------- /mq/src/share/lib/images/admin/Add24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/lib/images/admin/Add24.gif -------------------------------------------------------------------------------- /mq/src/share/lib/images/admin/dot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/lib/images/admin/dot.gif -------------------------------------------------------------------------------- /mq/src/share/lib/images/admin/Pause24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/lib/images/admin/Pause24.gif -------------------------------------------------------------------------------- /mq/src/share/lib/images/admin/Play24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/lib/images/admin/Play24.gif -------------------------------------------------------------------------------- /mq/src/share/lib/images/admin/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/lib/images/admin/folder.gif -------------------------------------------------------------------------------- /mq/src/share/security/passwd: -------------------------------------------------------------------------------- 1 | admin:-2d5455c8583c24eec82c7a1e273ea02e:admin:1 2 | guest:-2c3c4a34aa2c392f39edd112333c230d:anonymous:1 3 | -------------------------------------------------------------------------------- /mq/src/share/lib/images/admin/AppIcon48x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/lib/images/admin/AppIcon48x.gif -------------------------------------------------------------------------------- /mq/src/share/lib/images/admin/Broker16X.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/lib/images/admin/Broker16X.gif -------------------------------------------------------------------------------- /mq/src/share/lib/images/admin/BrokerX16X.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/lib/images/admin/BrokerX16X.gif -------------------------------------------------------------------------------- /mq/src/share/lib/images/admin/Delete24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/lib/images/admin/Delete24.gif -------------------------------------------------------------------------------- /mq/src/share/lib/images/admin/Purge24x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/lib/images/admin/Purge24x.gif -------------------------------------------------------------------------------- /mq/src/share/lib/images/admin/Refresh24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/lib/images/admin/Refresh24.gif -------------------------------------------------------------------------------- /mq/src/share/lib/images/admin/Restart24x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/lib/images/admin/Restart24x.gif -------------------------------------------------------------------------------- /mq/src/share/install/install/dependency/legacy/mq_37/index.txt: -------------------------------------------------------------------------------- 1 | JDK5.xml 2 | MessageQueue.xml 3 | NSS.xml 4 | NSPR.xml 5 | JavaHelpRuntime.xml 6 | -------------------------------------------------------------------------------- /mq/src/share/lib/images/admin/AboutBox48x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/lib/images/admin/AboutBox48x.gif -------------------------------------------------------------------------------- /mq/src/share/lib/images/admin/ExpandAll24x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/lib/images/admin/ExpandAll24x.gif -------------------------------------------------------------------------------- /mq/src/share/lib/images/admin/Properties24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/lib/images/admin/Properties24.gif -------------------------------------------------------------------------------- /mq/src/share/lib/images/admin/Shutdown24x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/lib/images/admin/Shutdown24x.gif -------------------------------------------------------------------------------- /mq/src/share/install/install/templates/Splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/install/install/templates/Splash.jpg -------------------------------------------------------------------------------- /mq/src/share/java/webapps/ums/umsArchitecture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/java/webapps/ums/umsArchitecture.jpg -------------------------------------------------------------------------------- /mq/src/share/lib/images/admin/BrokerQuery24X.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/lib/images/admin/BrokerQuery24X.gif -------------------------------------------------------------------------------- /mq/src/share/lib/images/admin/CollapseAll24x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/lib/images/admin/CollapseAll24x.gif -------------------------------------------------------------------------------- /mq/src/share/lib/images/admin/ObjectStore16x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/lib/images/admin/ObjectStore16x.gif -------------------------------------------------------------------------------- /mq/src/share/lib/images/admin/ObjectStoreX16X.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/lib/images/admin/ObjectStoreX16X.gif -------------------------------------------------------------------------------- /mq/src/share/lib/images/admin/Preferences24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/lib/images/admin/Preferences24.gif -------------------------------------------------------------------------------- /mq/src/share/lib/images/admin/ServiceList16x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/lib/images/admin/ServiceList16x.gif -------------------------------------------------------------------------------- /mq/src/share/lib/images/admin/splash_openmq.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/lib/images/admin/splash_openmq.gif -------------------------------------------------------------------------------- /docs/mq-tech-over/src/main/jbake/assets/img/to_mom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-tech-over/src/main/jbake/assets/img/to_mom.png -------------------------------------------------------------------------------- /mq/src/share/install/install/templates/zip/Splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/install/install/templates/zip/Splash.jpg -------------------------------------------------------------------------------- /mq/main/helpfiles/src/main/resources/images/console.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/main/helpfiles/src/main/resources/images/console.gif -------------------------------------------------------------------------------- /mq/src/share/install/install/templates/Splash_de_DE.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/install/install/templates/Splash_de_DE.jpg -------------------------------------------------------------------------------- /mq/src/share/install/install/templates/Splash_es_ES.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/install/install/templates/Splash_es_ES.jpg -------------------------------------------------------------------------------- /mq/src/share/install/install/templates/Splash_fr_FR.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/install/install/templates/Splash_fr_FR.jpg -------------------------------------------------------------------------------- /mq/src/share/install/install/templates/Splash_it_IT.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/install/install/templates/Splash_it_IT.jpg -------------------------------------------------------------------------------- /mq/src/share/install/install/templates/Splash_ja_JP.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/install/install/templates/Splash_ja_JP.jpg -------------------------------------------------------------------------------- /mq/src/share/install/install/templates/Splash_ko_KR.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/install/install/templates/Splash_ko_KR.jpg -------------------------------------------------------------------------------- /mq/src/share/install/install/templates/Splash_pt_BR.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/install/install/templates/Splash_pt_BR.jpg -------------------------------------------------------------------------------- /mq/src/share/install/install/templates/Splash_zh_CN.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/install/install/templates/Splash_zh_CN.jpg -------------------------------------------------------------------------------- /mq/src/share/install/install/templates/Splash_zh_TW.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/install/install/templates/Splash_zh_TW.jpg -------------------------------------------------------------------------------- /mq/src/share/lib/images/admin/AdminConnectBroker24x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/lib/images/admin/AdminConnectBroker24x.gif -------------------------------------------------------------------------------- /mq/src/share/lib/images/admin/CollectionOfBrokers16x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/lib/images/admin/CollectionOfBrokers16x.gif -------------------------------------------------------------------------------- /docs/mq-admin-guide/src/main/jbake/assets/img/adm_http.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-admin-guide/src/main/jbake/assets/img/adm_http.png -------------------------------------------------------------------------------- /docs/mq-admin-guide/src/main/jbake/assets/img/brokers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-admin-guide/src/main/jbake/assets/img/brokers.png -------------------------------------------------------------------------------- /docs/mq-admin-guide/src/main/jbake/assets/img/services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-admin-guide/src/main/jbake/assets/img/services.png -------------------------------------------------------------------------------- /docs/mq-admin-guide/src/main/jbake/assets/img/to_myjaas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-admin-guide/src/main/jbake/assets/img/to_myjaas.png -------------------------------------------------------------------------------- /docs/mq-shared-doc-resources/src/main/resources/assets/assets/css/print.scss: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | @import "{{ site.theme }}"; 5 | h1 { 6 | font-size: 1.8em; 7 | } 8 | 9 | -------------------------------------------------------------------------------- /docs/mq-tech-over/src/main/jbake/assets/img/to_2domains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-tech-over/src/main/jbake/assets/img/to_2domains.png -------------------------------------------------------------------------------- /docs/mq-tech-over/src/main/jbake/assets/img/to_complexq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-tech-over/src/main/jbake/assets/img/to_complexq.png -------------------------------------------------------------------------------- /docs/mq-tech-over/src/main/jbake/assets/img/to_monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-tech-over/src/main/jbake/assets/img/to_monitor.png -------------------------------------------------------------------------------- /docs/mq-tech-over/src/main/jbake/assets/img/to_replyto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-tech-over/src/main/jbake/assets/img/to_replyto.png -------------------------------------------------------------------------------- /docs/mq-tech-over/src/main/jbake/assets/img/to_rpc_mom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-tech-over/src/main/jbake/assets/img/to_rpc_mom.png -------------------------------------------------------------------------------- /docs/mq-tech-over/src/main/jbake/assets/img/to_simpleq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-tech-over/src/main/jbake/assets/img/to_simpleq.png -------------------------------------------------------------------------------- /mq/main/helpfiles/src/main/resources/images/Broker16X.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/main/helpfiles/src/main/resources/images/Broker16X.gif -------------------------------------------------------------------------------- /mq/main/helpfiles/src/main/resources/images/BrokerX16X.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/main/helpfiles/src/main/resources/images/BrokerX16X.gif -------------------------------------------------------------------------------- /mq/src/share/install/install/templates/zip/Splash_de_DE.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/install/install/templates/zip/Splash_de_DE.jpg -------------------------------------------------------------------------------- /mq/src/share/install/install/templates/zip/Splash_es_ES.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/install/install/templates/zip/Splash_es_ES.jpg -------------------------------------------------------------------------------- /mq/src/share/install/install/templates/zip/Splash_fr_FR.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/install/install/templates/zip/Splash_fr_FR.jpg -------------------------------------------------------------------------------- /mq/src/share/install/install/templates/zip/Splash_ja_JP.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/install/install/templates/zip/Splash_ja_JP.jpg -------------------------------------------------------------------------------- /mq/src/share/install/install/templates/zip/Splash_ko_KR.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/install/install/templates/zip/Splash_ko_KR.jpg -------------------------------------------------------------------------------- /mq/src/share/install/install/templates/zip/Splash_zh_CN.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/install/install/templates/zip/Splash_zh_CN.jpg -------------------------------------------------------------------------------- /mq/src/share/install/install/templates/zip/Splash_zh_TW.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/install/install/templates/zip/Splash_zh_TW.jpg -------------------------------------------------------------------------------- /mq/src/share/lib/images/admin/AdminDisConnectBroker24x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/lib/images/admin/AdminDisConnectBroker24x.gif -------------------------------------------------------------------------------- /mq/src/share/lib/images/admin/BrokerDestinationList16x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/lib/images/admin/BrokerDestinationList16x.gif -------------------------------------------------------------------------------- /docs/mq-admin-guide/src/main/jbake/assets/img/adm_monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-admin-guide/src/main/jbake/assets/img/adm_monitor.png -------------------------------------------------------------------------------- /docs/mq-admin-guide/src/main/jbake/assets/img/adm_msgflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-admin-guide/src/main/jbake/assets/img/adm_msgflow.png -------------------------------------------------------------------------------- /docs/mq-tech-over/src/main/jbake/assets/img/to_admintools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-tech-over/src/main/jbake/assets/img/to_admintools.png -------------------------------------------------------------------------------- /docs/mq-tech-over/src/main/jbake/assets/img/to_hacluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-tech-over/src/main/jbake/assets/img/to_hacluster.png -------------------------------------------------------------------------------- /docs/mq-tech-over/src/main/jbake/assets/img/to_middleware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-tech-over/src/main/jbake/assets/img/to_middleware.png -------------------------------------------------------------------------------- /docs/mq-tech-over/src/main/jbake/assets/img/to_secmanager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-tech-over/src/main/jbake/assets/img/to_secmanager.png -------------------------------------------------------------------------------- /mq/main/helpfiles/src/main/resources/images/AppIcon16xCDE.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/main/helpfiles/src/main/resources/images/AppIcon16xCDE.gif -------------------------------------------------------------------------------- /mq/src/share/lib/images/admin/CollectionOfObjectStores16x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/lib/images/admin/CollectionOfObjectStores16x.gif -------------------------------------------------------------------------------- /docs/mq-admin-guide/src/main/jbake/assets/img/addbrokerdlog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-admin-guide/src/main/jbake/assets/img/addbrokerdlog.png -------------------------------------------------------------------------------- /docs/mq-admin-guide/src/main/jbake/assets/img/adm_jaasfiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-admin-guide/src/main/jbake/assets/img/adm_jaasfiles.png -------------------------------------------------------------------------------- /docs/mq-admin-guide/src/main/jbake/assets/img/adm_jmxconnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-admin-guide/src/main/jbake/assets/img/adm_jmxconnect.png -------------------------------------------------------------------------------- /docs/mq-admin-guide/src/main/jbake/assets/img/adm_mqservice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-admin-guide/src/main/jbake/assets/img/adm_mqservice.png -------------------------------------------------------------------------------- /docs/mq-admin-guide/src/main/jbake/assets/img/adm_protocols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-admin-guide/src/main/jbake/assets/img/adm_protocols.png -------------------------------------------------------------------------------- /docs/mq-admin-guide/src/main/jbake/assets/img/adm_secmanager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-admin-guide/src/main/jbake/assets/img/adm_secmanager.png -------------------------------------------------------------------------------- /docs/mq-admin-guide/src/main/jbake/assets/img/adminobjects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-admin-guide/src/main/jbake/assets/img/adminobjects.png -------------------------------------------------------------------------------- /docs/mq-admin-guide/src/main/jbake/assets/img/connectbkrdlog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-admin-guide/src/main/jbake/assets/img/connectbkrdlog.png -------------------------------------------------------------------------------- /docs/mq-admin-guide/src/main/jbake/assets/img/helpoverview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-admin-guide/src/main/jbake/assets/img/helpoverview.png -------------------------------------------------------------------------------- /docs/mq-admin-guide/src/main/jbake/assets/img/startupscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-admin-guide/src/main/jbake/assets/img/startupscreen.png -------------------------------------------------------------------------------- /docs/mq-dev-guide-java/src/main/jbake/assets/img/dev-defer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-dev-guide-java/src/main/jbake/assets/img/dev-defer.png -------------------------------------------------------------------------------- /docs/mq-dev-guide-java/src/main/jbake/assets/img/dev-publish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-dev-guide-java/src/main/jbake/assets/img/dev-publish.png -------------------------------------------------------------------------------- /docs/mq-dev-guide-java/src/main/jbake/assets/img/jax_soapmsg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-dev-guide-java/src/main/jbake/assets/img/jax_soapmsg.png -------------------------------------------------------------------------------- /docs/mq-dev-guide-java/src/main/jbake/assets/img/jax_soapobj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-dev-guide-java/src/main/jbake/assets/img/jax_soapobj.png -------------------------------------------------------------------------------- /docs/mq-dev-guide-java/src/main/jbake/assets/img/jax_soaporg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-dev-guide-java/src/main/jbake/assets/img/jax_soaporg.png -------------------------------------------------------------------------------- /docs/mq-tech-over/src/main/jbake/assets/img/to_brokercluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-tech-over/src/main/jbake/assets/img/to_brokercluster.png -------------------------------------------------------------------------------- /docs/mq-tech-over/src/main/jbake/assets/img/to_complextopic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-tech-over/src/main/jbake/assets/img/to_complextopic.png -------------------------------------------------------------------------------- /docs/mq-tech-over/src/main/jbake/assets/img/to_mdbmessaging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-tech-over/src/main/jbake/assets/img/to_mdbmessaging.png -------------------------------------------------------------------------------- /docs/mq-tech-over/src/main/jbake/assets/img/to_msgdelivery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-tech-over/src/main/jbake/assets/img/to_msgdelivery.png -------------------------------------------------------------------------------- /docs/mq-tech-over/src/main/jbake/assets/img/to_persistsvcs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-tech-over/src/main/jbake/assets/img/to_persistsvcs.png -------------------------------------------------------------------------------- /docs/mq-tech-over/src/main/jbake/assets/img/to_simpletopic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-tech-over/src/main/jbake/assets/img/to_simpletopic.png -------------------------------------------------------------------------------- /mq/main/helpfiles/src/main/resources/images/ObjectStore16x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/main/helpfiles/src/main/resources/images/ObjectStore16x.gif -------------------------------------------------------------------------------- /mq/main/helpfiles/src/main/resources/images/ObjectStoreX16X.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/main/helpfiles/src/main/resources/images/ObjectStoreX16X.gif -------------------------------------------------------------------------------- /mq/src/share/lib/images/admin/AdminConnectToObjectStore24x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/lib/images/admin/AdminConnectToObjectStore24x.gif -------------------------------------------------------------------------------- /docs/mq-admin-guide/src/main/jbake/assets/img/addobjstoredlog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-admin-guide/src/main/jbake/assets/img/addobjstoredlog.png -------------------------------------------------------------------------------- /docs/mq-admin-guide/src/main/jbake/assets/img/addphysdestdlog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-admin-guide/src/main/jbake/assets/img/addphysdestdlog.png -------------------------------------------------------------------------------- /docs/mq-admin-guide/src/main/jbake/assets/img/adm_configfiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-admin-guide/src/main/jbake/assets/img/adm_configfiles.png -------------------------------------------------------------------------------- /docs/mq-admin-guide/src/main/jbake/assets/img/adm_local-remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-admin-guide/src/main/jbake/assets/img/adm_local-remote.png -------------------------------------------------------------------------------- /docs/mq-admin-guide/src/main/jbake/assets/img/adm_persistsvcs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-admin-guide/src/main/jbake/assets/img/adm_persistsvcs.png -------------------------------------------------------------------------------- /docs/mq-admin-guide/src/main/jbake/assets/img/destadminobjects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-admin-guide/src/main/jbake/assets/img/destadminobjects.png -------------------------------------------------------------------------------- /docs/mq-admin-guide/src/main/jbake/assets/img/jmsservpropsdlog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-admin-guide/src/main/jbake/assets/img/jmsservpropsdlog.png -------------------------------------------------------------------------------- /docs/mq-admin-guide/src/main/jbake/assets/img/queuebrowsermain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-admin-guide/src/main/jbake/assets/img/queuebrowsermain.png -------------------------------------------------------------------------------- /docs/mq-admin-guide/src/main/jbake/assets/img/to_jaaselements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-admin-guide/src/main/jbake/assets/img/to_jaaselements.png -------------------------------------------------------------------------------- /docs/mq-dev-guide-java/src/main/jbake/assets/img/jax_faultorg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-dev-guide-java/src/main/jbake/assets/img/jax_faultorg.png -------------------------------------------------------------------------------- /docs/mq-dev-guide-java/src/main/jbake/assets/img/jax_interop1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-dev-guide-java/src/main/jbake/assets/img/jax_interop1.png -------------------------------------------------------------------------------- /docs/mq-dev-guide-java/src/main/jbake/assets/img/jax_soapwatt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-dev-guide-java/src/main/jbake/assets/img/jax_soapwatt.png -------------------------------------------------------------------------------- /docs/mq-shared-doc-resources/src/main/resources/assets/README.md: -------------------------------------------------------------------------------- 1 | # About 2 | 3 | The {{site.title}} project contains the [AsciiDoc](http://asciidoc.org/) 4 | source code for the ... 5 | -------------------------------------------------------------------------------- /docs/mq-tech-over/src/main/jbake/assets/img/to_cc-peer-brokers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-tech-over/src/main/jbake/assets/img/to_cc-peer-brokers.png -------------------------------------------------------------------------------- /docs/mq-tech-over/src/main/jbake/assets/img/to_jmsappelements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-tech-over/src/main/jbake/assets/img/to_jmsappelements.png -------------------------------------------------------------------------------- /docs/mq-tech-over/src/main/jbake/assets/img/to_mqservicesimple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-tech-over/src/main/jbake/assets/img/to_mqservicesimple.png -------------------------------------------------------------------------------- /mq/src/share/lib/images/admin/AdminDisConnectToObjectStore24x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/lib/images/admin/AdminDisConnectToObjectStore24x.gif -------------------------------------------------------------------------------- /mq/src/share/lib/images/admin/ObjectStoreCFDestination16xList.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/lib/images/admin/ObjectStoreCFDestination16xList.gif -------------------------------------------------------------------------------- /docs/mq-admin-guide/src/main/jbake/assets/img/addcfadminobjdlog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-admin-guide/src/main/jbake/assets/img/addcfadminobjdlog.png -------------------------------------------------------------------------------- /docs/mq-admin-guide/src/main/jbake/assets/img/adm_jmxconnect_wcf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-admin-guide/src/main/jbake/assets/img/adm_jmxconnect_wcf.png -------------------------------------------------------------------------------- /docs/mq-admin-guide/src/main/jbake/assets/img/physdestpropsdlog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-admin-guide/src/main/jbake/assets/img/physdestpropsdlog.png -------------------------------------------------------------------------------- /docs/mq-dev-guide-java/src/main/jbake/assets/img/jax_msglayers1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-dev-guide-java/src/main/jbake/assets/img/jax_msglayers1.png -------------------------------------------------------------------------------- /docs/mq-dev-guide-java/src/main/jbake/assets/img/jax_ppconnection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-dev-guide-java/src/main/jbake/assets/img/jax_ppconnection.png -------------------------------------------------------------------------------- /docs/mq-release-notes/src/main/jbake/assets/img/umsarchitecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-release-notes/src/main/jbake/assets/img/umsarchitecture.png -------------------------------------------------------------------------------- /mq/main/helpfiles/src/main/resources/en/connection_factory_prop.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/main/helpfiles/src/main/resources/en/connection_factory_prop.htm -------------------------------------------------------------------------------- /docs/mq-admin-guide/src/main/jbake/assets/img/addqueueadminobjdlog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-admin-guide/src/main/jbake/assets/img/addqueueadminobjdlog.png -------------------------------------------------------------------------------- /docs/mq-tech-over/src/main/jbake/assets/img/to_conventionalcluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-tech-over/src/main/jbake/assets/img/to_conventionalcluster.png -------------------------------------------------------------------------------- /docs/mq-admin-guide/src/main/jbake/assets/img/adm_jmxconnect_wregistry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-admin-guide/src/main/jbake/assets/img/adm_jmxconnect_wregistry.png -------------------------------------------------------------------------------- /docs/mq-admin-guide/src/main/jbake/assets/img/queuebrowsermsgdetails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-admin-guide/src/main/jbake/assets/img/queuebrowsermsgdetails.png -------------------------------------------------------------------------------- /docs/mq-tech-over/src/main/jbake/assets/img/to_clusterinfrastructure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-tech-over/src/main/jbake/assets/img/to_clusterinfrastructure.png -------------------------------------------------------------------------------- /mq/src/share/java/visualvm/src/com/sun/messaging/visualvm/ui/resources/broker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/java/visualvm/src/com/sun/messaging/visualvm/ui/resources/broker.gif -------------------------------------------------------------------------------- /mq/src/share/java/visualvm/src/com/sun/messaging/visualvm/ui/resources/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/java/visualvm/src/com/sun/messaging/visualvm/ui/resources/folder.gif -------------------------------------------------------------------------------- /docs/mq-shared-doc-resources/src/main/resources/assets/assets/images/header-bkg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-shared-doc-resources/src/main/resources/assets/assets/images/header-bkg.jpg -------------------------------------------------------------------------------- /mq/src/share/java/visualvm/src/com/sun/messaging/visualvm/ui/resources/GlassFish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/java/visualvm/src/com/sun/messaging/visualvm/ui/resources/GlassFish.png -------------------------------------------------------------------------------- /mq/src/share/java/visualvm/src/com/sun/messaging/visualvm/ui/resources/cli_badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/java/visualvm/src/com/sun/messaging/visualvm/ui/resources/cli_badge.png -------------------------------------------------------------------------------- /mq/src/share/java/visualvm/src/com/sun/messaging/visualvm/ui/resources/consumers.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/java/visualvm/src/com/sun/messaging/visualvm/ui/resources/consumers.gif -------------------------------------------------------------------------------- /mq/src/share/java/visualvm/src/com/sun/messaging/visualvm/ui/resources/producers.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/java/visualvm/src/com/sun/messaging/visualvm/ui/resources/producers.gif -------------------------------------------------------------------------------- /mq/src/share/java/visualvm/src/com/sun/messaging/visualvm/ui/resources/services.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/java/visualvm/src/com/sun/messaging/visualvm/ui/resources/services.gif -------------------------------------------------------------------------------- /docs/mq-shared-doc-resources/src/main/resources/templates/page.ftl: -------------------------------------------------------------------------------- 1 | <#-- a top level page layout template --> 2 | 3 | <#include "header.ftl"> 4 | <#include "menu.ftl"> 5 | 6 | ${content.body} 7 | 8 | <#include "footer.ftl"> -------------------------------------------------------------------------------- /mq/src/share/java/examples/jmsbridge/README: -------------------------------------------------------------------------------- 1 | JMS Bridge Examples 2 | ------------------- 3 | 4 | Directory Description 5 | --------- ----------- 6 | mqtomq An example of JMS Bridge that bridges 2 MQ brokers 7 | -------------------------------------------------------------------------------- /mq/src/share/java/visualvm/src/com/sun/messaging/visualvm/ui/resources/brokerdown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/java/visualvm/src/com/sun/messaging/visualvm/ui/resources/brokerdown.gif -------------------------------------------------------------------------------- /mq/src/share/java/visualvm/src/com/sun/messaging/visualvm/ui/resources/brokerother.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/java/visualvm/src/com/sun/messaging/visualvm/ui/resources/brokerother.gif -------------------------------------------------------------------------------- /mq/src/share/java/visualvm/src/com/sun/messaging/visualvm/ui/resources/connections.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/java/visualvm/src/com/sun/messaging/visualvm/ui/resources/connections.gif -------------------------------------------------------------------------------- /mq/src/share/java/visualvm/src/com/sun/messaging/visualvm/ui/resources/dukeplug16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/java/visualvm/src/com/sun/messaging/visualvm/ui/resources/dukeplug16.gif -------------------------------------------------------------------------------- /mq/src/share/install/sys/mq/bin/README: -------------------------------------------------------------------------------- 1 | 2 | The files in this directory are copied into the directory /dist/sys/mq/bin 3 | at build time. The exact files that are copied are listed in 4 | /src/buildcfg/Install-*.gmk 5 | -------------------------------------------------------------------------------- /mq/src/share/java/visualvm/src/com/sun/messaging/visualvm/ui/resources/brokerrunning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/java/visualvm/src/com/sun/messaging/visualvm/ui/resources/brokerrunning.gif -------------------------------------------------------------------------------- /mq/src/share/java/visualvm/src/com/sun/messaging/visualvm/ui/resources/transactions.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/java/visualvm/src/com/sun/messaging/visualvm/ui/resources/transactions.gif -------------------------------------------------------------------------------- /docs/mq-shared-doc-resources/src/main/resources/assets/img/eclipse_foundation_logo_tiny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/docs/mq-shared-doc-resources/src/main/resources/assets/img/eclipse_foundation_logo_tiny.png -------------------------------------------------------------------------------- /mq/src/share/java/visualvm/src/com/sun/messaging/visualvm/ui/resources/brokerconnected.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/java/visualvm/src/com/sun/messaging/visualvm/ui/resources/brokerconnected.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # OpenMQ Project 2 | Jakarta Messaging CI (Compatible Implementation) 3 | 4 | The project contains the following modules: 5 | 6 | - [Message Queue](mq) 7 | 8 | More details are available in the next folder down, [here](mq/) 9 | -------------------------------------------------------------------------------- /mq/src/share/java/visualvm/src/com/sun/messaging/visualvm/ui/resources/brokerdisconnected.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-ee4j/openmq/HEAD/mq/src/share/java/visualvm/src/com/sun/messaging/visualvm/ui/resources/brokerdisconnected.gif -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- 1 | # Apply tidy:pom changes 2 | 636796a8e78dd6ab364e4953874bddda56807ec5 3 | 4 | # Sort ecj.prefs 5 | f674a0e3bca520ef54b1313609afc5a9e5b4fbca 6 | 7 | # Full code base formatting for Java files 8 | 350bad80371abac8194d6a5bd45f4110a48281a7 9 | -------------------------------------------------------------------------------- /docs/mq-shared-doc-resources/src/main/resources/jbake.properties: -------------------------------------------------------------------------------- 1 | site.host=http://jbake.org 2 | render.tags=false 3 | render.sitemap=false 4 | render.archive=false 5 | render.feed=false 6 | asciidoctor.option.safe=0 7 | asciidoctor.attributes.export=true 8 | render.index=false 9 | -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | wrapperVersion=3.3.4 2 | distributionType=only-script 3 | distributionSha256Sum=305773a68d6ddfd413df58c82b3f8050e89778e777f3a745c8e5b8cbea4018ef 4 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.12/apache-maven-3.9.12-bin.zip 5 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: "maven" 4 | directory: "/" 5 | schedule: 6 | interval: "daily" 7 | time: "02:00" 8 | - package-ecosystem: "github-actions" 9 | directory: "/" 10 | schedule: 11 | interval: "daily" 12 | time: "02:00" 13 | -------------------------------------------------------------------------------- /mq/src/share/java/visualvm/manifest.mf: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | OpenIDE-Module: com.sun.messaging.visualvm 3 | OpenIDE-Module-Install: com/sun/messaging/visualvm/Installer.class 4 | OpenIDE-Module-Layer: com/sun/messaging/visualvm/layer.xml 5 | OpenIDE-Module-Localizing-Bundle: com/sun/messaging/visualvm/Bundle.properties 6 | OpenIDE-Module-Specification-Version: 5.1 7 | 8 | -------------------------------------------------------------------------------- /mq/src/doc/en/README-lib: -------------------------------------------------------------------------------- 1 | 2 | GlassFish(tm) Message Queue 3 | Version 5.1 4 | 5 | 6 | Any .jar or .zip file placed in this directory ($IMQ_VARHOME/lib on Unix 7 | and %IMQ_VARHOME%\lib on Windows) is added to the Broker's CLASSPATH. 8 | Typically this is only used when configuring JDBC support for the 9 | Broker's persistent store or when configuring JAAS LoginModules for 10 | the Broker's JAAS authentication support. 11 | 12 | 13 | -------------------------------------------------------------------------------- /mq/src/share/java/visualvm/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | mq-visualvm 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.jdt.core.javabuilder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.jdt.core.javanature 16 | 17 | 18 | -------------------------------------------------------------------------------- /docs/mq-tech-over/src/main/jbake/assets/_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-architect 2 | 3 | title: [mq-tech-over] 4 | description: [Eclipse Open Message Queue Technical Overview, Release 5.0] 5 | 6 | # sidebar links url 7 | links: 8 | source: https://github.com/javaee/mq-tech-over 9 | download: https://github.com/javaee/mq-tech-over/releases 10 | #mailinglist: https://javaee.groups.io/g/mq-tech-over 11 | #javadocs: 12 | docs: https://javaee.github.io/mq-tech-over 13 | #faq: 14 | 15 | -------------------------------------------------------------------------------- /docs/mq-admin-guide/src/main/jbake/assets/_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-architect 2 | 3 | title: [mq-admin-guide] 4 | description: [Eclipse Open Message Queue Administration Guide, Release 5.0] 5 | 6 | # sidebar links url 7 | links: 8 | source: https://github.com/javaee/mq-admin-guide 9 | download: https://github.com/javaee/mq-admin-guide/releases 10 | #mailinglist: https://javaee.groups.io/g/mq-admin-guide 11 | #javadocs: 12 | docs: https://javaee.github.io/mq-admin-guide 13 | #faq: 14 | 15 | -------------------------------------------------------------------------------- /docs/mq-dev-guide-c/src/main/jbake/assets/_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-architect 2 | 3 | title: [mq-dev-guide-c] 4 | description: [Eclipse Open Message Queue Developer's Guide for C Clients, Release 5.0] 5 | 6 | # sidebar links url 7 | links: 8 | source: https://github.com/javaee/mq-dev-guide-c 9 | download: https://github.com/javaee/mq-dev-guide-c/releases 10 | #mailinglist: https://javaee.groups.io/g/mq-dev-guide-c 11 | #javadocs: 12 | docs: https://javaee.github.io/mq-dev-guide-c 13 | #faq: 14 | 15 | -------------------------------------------------------------------------------- /docs/mq-dev-guide-jmx/src/main/jbake/assets/_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-architect 2 | 3 | title: [mq-dev-guide-jmx] 4 | description: [Eclipse Open Message Queue Developer's Guide for JMX Clients, Release 5.0] 5 | 6 | # sidebar links url 7 | links: 8 | source: https://github.com/javaee/mq-dev-guide-jmx 9 | download: https://github.com/javaee/mq-dev-guide-jmx/releases 10 | #mailinglist: https://javaee.groups.io/g/mq-dev-guide-jmx 11 | #javadocs: 12 | docs: https://javaee.github.io/mq-dev-guide-jmx 13 | #faq: 14 | 15 | -------------------------------------------------------------------------------- /mq/src/buildant/excludefiles.txt: -------------------------------------------------------------------------------- 1 | 2 | visualvm/**/**.java 3 | com/sun/messaging/jmq/installer/MQInstallerWrapper.java 4 | 5 | com/sun/messaging/jmq/jmsserver/management/jesmf/**/**.java 6 | com/sun/messaging/jmq/jmsserver/audit/BSMAuditSession.java 7 | examples/**/**.java 8 | 9 | com/sun/messaging/jmq/jmsserver/persist/coherence/**/**.java 10 | com/sun/messaging/jmq/jmsserver/cores/impl/**/**.java 11 | com/sun/messaging/jmq/jmsserver/persist/bdb/**/**.java 12 | com/sun/messaging/jmq/jmsserver/plugin/impl/msgpattern/**/**.java 13 | 14 | -------------------------------------------------------------------------------- /docs/mq-dev-guide-java/src/main/jbake/assets/_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-architect 2 | 3 | title: [mq-dev-guide-java] 4 | description: [Eclipse Open Message Queue Developer's Guide for Java Clients, Release 5.0] 5 | 6 | # sidebar links url 7 | links: 8 | source: https://github.com/javaee/mq-dev-guide-java 9 | download: https://github.com/javaee/mq-dev-guide-java/releases 10 | #mailinglist: https://javaee.groups.io/g/mq-dev-guide-java 11 | #javadocs: 12 | docs: https://javaee.github.io/mq-dev-guide-java 13 | #faq: 14 | 15 | -------------------------------------------------------------------------------- /.github/workflows-etc/it-ldap/ldap-data.ldif: -------------------------------------------------------------------------------- 1 | dn: dc=openmq,dc=eclipse,dc=org 2 | objectClass: domain 3 | objectClass: top 4 | dc: openmq 5 | 6 | dn: ou=people,dc=openmq,dc=eclipse,dc=org 7 | objectClass: organizationalUnit 8 | objectClass: top 9 | ou: people 10 | 11 | dn: uid=mqadmin,ou=people,dc=openmq,dc=eclipse,dc=org 12 | cn: MQ Admin 13 | givenName: MQAdmin 14 | objectClass: inetOrgPerson 15 | objectClass: organizationalPerson 16 | objectClass: person 17 | objectClass: top 18 | sn: MQAdmin 19 | uid: mqadmin 20 | userPassword: mqadmiin2 21 | -------------------------------------------------------------------------------- /docs/mq-release-notes/src/main/jbake/assets/_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-architect 2 | 3 | title: [mq-release-notes] 4 | description: [Eclipse Open Message Queue Release Notes, Release 6.1.0] 5 | 6 | # sidebar links url 7 | links: 8 | source: https://github.com/eclipse-ee4j/openmq/tree/master/docs/mq/mq-release-notes 9 | download: https://github.com/eclipse-ee4j/openmq/releases 10 | #mailinglist: https://javaee.groups.io/g/mq-release-notes 11 | #javadocs: 12 | docs: https://eclipse-ee4j.github.io/openmq/guides/mq-release-notes/toc.html 13 | #faq: 14 | 15 | -------------------------------------------------------------------------------- /mq/src/share/java/examples/ums/get/README: -------------------------------------------------------------------------------- 1 | @(#)README 1.0 09/09/08 2 | 3 | UMS APIs examples 4 | 5 | Description 6 | ----------- 7 | This directory contains sample HTML files that demonstrate how to 8 | construct simple HTTP GET operations that perform simple utility operations 9 | 10 | 11 | Files 12 | ----- 13 | 14 | UtilsUsingGet.html HTML file that demonstrates various utilities that use the HTTP GET protocol 15 | 16 | README This file. 17 | 18 | Minimum Browser Requirements 19 | ---------------------------- 20 | Require Firefox 2 and higher or Internet Explorer 6 and higher. 21 | In your browser, you must enable JavaScript. 22 | -------------------------------------------------------------------------------- /.mvn/jvm.config.error-prone: -------------------------------------------------------------------------------- 1 | --add-exports jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED 2 | --add-exports jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED 3 | --add-exports jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED 4 | --add-exports jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED 5 | --add-exports jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED 6 | --add-exports jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED 7 | --add-exports jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED 8 | --add-exports jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED 9 | --add-opens jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED 10 | --add-opens jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED 11 | -------------------------------------------------------------------------------- /mq/src/share/java/examples/applications/mqping/GNUmakefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Distribution License v. 1.0, which is available at 6 | # http://www.eclipse.org/org/documents/edl-v10.php. 7 | # 8 | # SPDX-License-Identifier: BSD-3-Clause 9 | # 10 | 11 | PACKAGE = 12 | TOPDIR = ../../../../../.. 13 | MAKEDEFS = $(TOPDIR)/src/buildcfg/Defs.gmk 14 | 15 | DEMOFILES.java = \ 16 | mqping.java 17 | 18 | include $(MAKEDEFS) 19 | 20 | all optimized : $(DEMOFILES.class) 21 | debug : classes.debug 22 | clean : demo.clean 23 | -------------------------------------------------------------------------------- /mq/src/share/java/examples/ums/ajax/README: -------------------------------------------------------------------------------- 1 | @(#)README 1.0 09/09/08 2 | 3 | UMS APIs examples 4 | 5 | Description 6 | ----------- 7 | This directory contains Ajax examples that illustrates the use of the 8 | UMS APIs to send and receive simple text message. 9 | 10 | Files 11 | ----- 12 | SendMsg.html Source file for Ajax client that sends 13 | text message to a UMS server. 14 | ReceiveMsg.html Source file for Ajax client that receives 15 | text message from a UMS server. 16 | README This file. 17 | 18 | Minimum Browser Requirements 19 | ---------------------------- 20 | Require Firefox 2 and higher or Internet Explorer 6 and higher. 21 | In your browser, you must enable JavaScript. 22 | -------------------------------------------------------------------------------- /mq/src/share/java/examples/applications/qbrowser/GNUmakefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Distribution License v. 1.0, which is available at 6 | # http://www.eclipse.org/org/documents/edl-v10.php. 7 | # 8 | # SPDX-License-Identifier: BSD-3-Clause 9 | # 10 | 11 | PACKAGE = 12 | TOPDIR = ../../../../../.. 13 | MAKEDEFS = $(TOPDIR)/src/buildcfg/Defs.gmk 14 | 15 | DEMOFILES.java = \ 16 | QBrowser.java 17 | 18 | include $(MAKEDEFS) 19 | 20 | all optimized : $(DEMOFILES.class) 21 | debug : classes.debug 22 | clean : demo.clean 23 | -------------------------------------------------------------------------------- /mq/src/share/java/examples/applications/simplechat/GNUmakefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Distribution License v. 1.0, which is available at 6 | # http://www.eclipse.org/org/documents/edl-v10.php. 7 | # 8 | # SPDX-License-Identifier: BSD-3-Clause 9 | # 10 | 11 | PACKAGE = 12 | TOPDIR = ../../../../../.. 13 | MAKEDEFS = $(TOPDIR)/src/buildcfg/Defs.gmk 14 | 15 | DEMOFILES.java = \ 16 | SimpleChat.java 17 | 18 | include $(MAKEDEFS) 19 | 20 | all optimized : $(DEMOFILES.class) 21 | debug : classes.debug 22 | clean : demo.clean 23 | -------------------------------------------------------------------------------- /mq/src/share/java/examples/applications/uclient/GNUmakefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Distribution License v. 1.0, which is available at 6 | # http://www.eclipse.org/org/documents/edl-v10.php. 7 | # 8 | # SPDX-License-Identifier: BSD-3-Clause 9 | # 10 | 11 | PACKAGE = 12 | TOPDIR = ../../../../../.. 13 | MAKEDEFS = $(TOPDIR)/src/buildcfg/Defs.gmk 14 | 15 | DEMOFILES.java = \ 16 | UniversalClient.java 17 | 18 | include $(MAKEDEFS) 19 | 20 | all optimized : $(DEMOFILES.class) 21 | debug : classes.debug 22 | clean : demo.clean 23 | -------------------------------------------------------------------------------- /mq/src/share/java/examples/jms20/messagegetbody/GNUmakefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Distribution License v. 1.0, which is available at 6 | # http://www.eclipse.org/org/documents/edl-v10.php. 7 | # 8 | # SPDX-License-Identifier: BSD-3-Clause 9 | # 10 | 11 | PACKAGE = 12 | TOPDIR = ../../../../../.. 13 | MAKEDEFS = $(TOPDIR)/src/buildcfg/Defs.gmk 14 | 15 | DEMOFILES.java = \ 16 | MessageGetBodyExample.java 17 | 18 | include $(MAKEDEFS) 19 | 20 | all optimized : $(DEMOFILES.class) 21 | debug : classes.debug 22 | clean : demo.clean 23 | -------------------------------------------------------------------------------- /mq/src/share/java/examples/helloworld/helloworldmessage/GNUmakefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Distribution License v. 1.0, which is available at 6 | # http://www.eclipse.org/org/documents/edl-v10.php. 7 | # 8 | # SPDX-License-Identifier: BSD-3-Clause 9 | # 10 | 11 | PACKAGE = 12 | TOPDIR = ../../../../../.. 13 | MAKEDEFS = $(TOPDIR)/src/buildcfg/Defs.gmk 14 | 15 | DEMOFILES.java = \ 16 | HelloWorldMessage.java 17 | 18 | 19 | include $(MAKEDEFS) 20 | 21 | all optimized : $(DEMOFILES.class) 22 | debug : classes.debug 23 | clean : demo.clean 24 | -------------------------------------------------------------------------------- /docs/mq-admin-guide/src/main/jbake/content/part-introduction.adoc: -------------------------------------------------------------------------------- 1 | type=page 2 | status=published 3 | title=Introduction to Message Queue Administration 4 | next=admin-tasks-and-tools.html 5 | prev=preface.html 6 | ~~~~~~ 7 | Introduction to Message Queue Administration 8 | ============================================ 9 | 10 | [[gcrlv]][[GMADG00141]][[part-i]] 11 | 12 | Part I + 13 | -------- 14 | 15 | [[introduction-to-message-queue-administration]] 16 | Introduction to Message Queue Administration 17 | -------------------------------------------- 18 | 19 | * link:admin-tasks-and-tools.html#aeoap[Chapter 1, "Administrative Tasks 20 | and Tools"] 21 | * link:quick-start.html#aeoay[Chapter 2, "Quick-Start Tutorial"] 22 | 23 | 24 | -------------------------------------------------------------------------------- /mq/src/share/java/visualvm/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Thu May 14 13:41:36 BST 2009 2 | eclipse.preferences.version=1 3 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 4 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 5 | org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve 6 | org.eclipse.jdt.core.compiler.compliance=1.6 7 | org.eclipse.jdt.core.compiler.debug.lineNumber=generate 8 | org.eclipse.jdt.core.compiler.debug.localVariable=generate 9 | org.eclipse.jdt.core.compiler.debug.sourceFile=generate 10 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 11 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 12 | org.eclipse.jdt.core.compiler.source=1.6 13 | -------------------------------------------------------------------------------- /mq/src/share/java/examples/helloworld/helloworldmessagejndi/GNUmakefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Distribution License v. 1.0, which is available at 6 | # http://www.eclipse.org/org/documents/edl-v10.php. 7 | # 8 | # SPDX-License-Identifier: BSD-3-Clause 9 | # 10 | 11 | PACKAGE = 12 | TOPDIR = ../../../../../.. 13 | MAKEDEFS = $(TOPDIR)/src/buildcfg/Defs.gmk 14 | 15 | DEMOFILES.java = \ 16 | HelloWorldMessageJNDI.java 17 | 18 | 19 | include $(MAKEDEFS) 20 | 21 | all optimized : $(DEMOFILES.class) 22 | debug : classes.debug 23 | clean : demo.clean 24 | -------------------------------------------------------------------------------- /mq/src/share/java/examples/jms20/asynctopicconsumer/GNUmakefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Distribution License v. 1.0, which is available at 6 | # http://www.eclipse.org/org/documents/edl-v10.php. 7 | # 8 | # SPDX-License-Identifier: BSD-3-Clause 9 | # 10 | 11 | PACKAGE = 12 | TOPDIR = ../../../../../.. 13 | MAKEDEFS = $(TOPDIR)/src/buildcfg/Defs.gmk 14 | 15 | DEMOFILES.java = \ 16 | SendMsgsToTopic.java \ 17 | AsyncTopicConsumer.java 18 | 19 | include $(MAKEDEFS) 20 | 21 | all optimized : $(DEMOFILES.class) 22 | debug : classes.debug 23 | clean : demo.clean 24 | -------------------------------------------------------------------------------- /mq/src/share/java/examples/jms20/selector/GNUmakefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Distribution License v. 1.0, which is available at 6 | # http://www.eclipse.org/org/documents/edl-v10.php. 7 | # 8 | # SPDX-License-Identifier: BSD-3-Clause 9 | # 10 | 11 | PACKAGE = 12 | TOPDIR = ../../../../../.. 13 | MAKEDEFS = $(TOPDIR)/src/buildcfg/Defs.gmk 14 | 15 | DEMOFILES.java = \ 16 | SelectorProducerExample.java \ 17 | SelectorConsumerExample.java 18 | 19 | include $(MAKEDEFS) 20 | 21 | all optimized : $(DEMOFILES.class) 22 | debug : classes.debug 23 | clean : demo.clean 24 | -------------------------------------------------------------------------------- /mq/src/share/java/examples/jms20/asyncsend/GNUmakefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Distribution License v. 1.0, which is available at 6 | # http://www.eclipse.org/org/documents/edl-v10.php. 7 | # 8 | # SPDX-License-Identifier: BSD-3-Clause 9 | # 10 | 11 | PACKAGE = 12 | TOPDIR = ../../../../../.. 13 | MAKEDEFS = $(TOPDIR)/src/buildcfg/Defs.gmk 14 | 15 | DEMOFILES.java = \ 16 | AsyncTopicProducerExample.java \ 17 | AsyncTopicConsumerExample.java 18 | 19 | include $(MAKEDEFS) 20 | 21 | all optimized : $(DEMOFILES.class) 22 | debug : classes.debug 23 | clean : demo.clean 24 | -------------------------------------------------------------------------------- /mq/src/share/java/examples/jms20/messageheader/GNUmakefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Distribution License v. 1.0, which is available at 6 | # http://www.eclipse.org/org/documents/edl-v10.php. 7 | # 8 | # SPDX-License-Identifier: BSD-3-Clause 9 | # 10 | 11 | PACKAGE = 12 | TOPDIR = ../../../../../.. 13 | MAKEDEFS = $(TOPDIR)/src/buildcfg/Defs.gmk 14 | 15 | DEMOFILES.java = \ 16 | MessageHeadersProducer.java \ 17 | MessageHeadersConsumer.java 18 | 19 | include $(MAKEDEFS) 20 | 21 | all optimized : $(DEMOFILES.class) 22 | debug : classes.debug 23 | clean : demo.clean 24 | -------------------------------------------------------------------------------- /mq/src/share/java/examples/jms20/deliverycount/GNUmakefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Distribution License v. 1.0, which is available at 6 | # http://www.eclipse.org/org/documents/edl-v10.php. 7 | # 8 | # SPDX-License-Identifier: BSD-3-Clause 9 | # 10 | 11 | PACKAGE = 12 | TOPDIR = ../../../../../.. 13 | MAKEDEFS = $(TOPDIR)/src/buildcfg/Defs.gmk 14 | 15 | DEMOFILES.java = \ 16 | JMSXDeliveryCountExample1.java \ 17 | JMSXDeliveryCountExample2.java 18 | 19 | include $(MAKEDEFS) 20 | 21 | all optimized : $(DEMOFILES.class) 22 | debug : classes.debug 23 | clean : demo.clean 24 | -------------------------------------------------------------------------------- /mq/src/share/java/examples/jms20/deliverydelay/GNUmakefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Distribution License v. 1.0, which is available at 6 | # http://www.eclipse.org/org/documents/edl-v10.php. 7 | # 8 | # SPDX-License-Identifier: BSD-3-Clause 9 | # 10 | 11 | PACKAGE = 12 | TOPDIR = ../../../../../.. 13 | MAKEDEFS = $(TOPDIR)/src/buildcfg/Defs.gmk 14 | 15 | DEMOFILES.java = \ 16 | DeliveryDelayProducer.java \ 17 | DeliveryDelayConsumer.java 18 | 19 | 20 | include $(MAKEDEFS) 21 | 22 | all optimized : $(DEMOFILES.class) 23 | debug : classes.debug 24 | clean : demo.clean 25 | -------------------------------------------------------------------------------- /mq/src/share/java/examples/jms20/messageproperties/GNUmakefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Distribution License v. 1.0, which is available at 6 | # http://www.eclipse.org/org/documents/edl-v10.php. 7 | # 8 | # SPDX-License-Identifier: BSD-3-Clause 9 | # 10 | 11 | PACKAGE = 12 | TOPDIR = ../../../../../.. 13 | MAKEDEFS = $(TOPDIR)/src/buildcfg/Defs.gmk 14 | 15 | DEMOFILES.java = \ 16 | MessagePropertiesProducer.java \ 17 | MessagePropertiesConsumer.java 18 | 19 | include $(MAKEDEFS) 20 | 21 | all optimized : $(DEMOFILES.class) 22 | debug : classes.debug 23 | clean : demo.clean 24 | -------------------------------------------------------------------------------- /mq/src/share/java/examples/jms20/syncqueue/GNUmakefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Distribution License v. 1.0, which is available at 6 | # http://www.eclipse.org/org/documents/edl-v10.php. 7 | # 8 | # SPDX-License-Identifier: BSD-3-Clause 9 | # 10 | 11 | PACKAGE = 12 | TOPDIR = ../../../../../.. 13 | MAKEDEFS = $(TOPDIR)/src/buildcfg/Defs.gmk 14 | 15 | DEMOFILES.java = \ 16 | MyObject.java \ 17 | SendObjectMsgsToQueue.java \ 18 | SyncQueueConsumer.java 19 | 20 | include $(MAKEDEFS) 21 | 22 | all optimized : $(DEMOFILES.class) 23 | debug : classes.debug 24 | clean : demo.clean 25 | -------------------------------------------------------------------------------- /mq/src/share/java/examples/applications/GNUmakefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Distribution License v. 1.0, which is available at 6 | # http://www.eclipse.org/org/documents/edl-v10.php. 7 | # 8 | # SPDX-License-Identifier: BSD-3-Clause 9 | # 10 | 11 | PACKAGE = 12 | TOPDIR = ../../../../.. 13 | MAKEDEFS = $(TOPDIR)/src/buildcfg/Defs.gmk 14 | DOCDEFS = $(TOPDIR)/src/buildcfg/Doc.gmk 15 | # 16 | # If you add an example, add the subdirectory here: 17 | # 18 | SUBDIRS = qbrowser simplechat mqping uclient 19 | 20 | include $(MAKEDEFS) 21 | 22 | all clean debug optimized : $(SUBDIRS) 23 | -------------------------------------------------------------------------------- /mq/src/share/java/examples/GNUmakefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Distribution License v. 1.0, which is available at 6 | # http://www.eclipse.org/org/documents/edl-v10.php. 7 | # 8 | # SPDX-License-Identifier: BSD-3-Clause 9 | # 10 | 11 | PACKAGE = 12 | TOPDIR = ../../../.. 13 | MAKEDEFS = $(TOPDIR)/src/buildcfg/Defs.gmk 14 | DOCDEFS = $(TOPDIR)/src/buildcfg/Doc.gmk 15 | # 16 | # If you add an example, add the subdirectory here: 17 | # 18 | SUBDIRS = jms jms20 jaxm monitoring helloworld applications jmx 19 | 20 | include $(MAKEDEFS) 21 | 22 | all clean debug optimized : $(SUBDIRS) 23 | -------------------------------------------------------------------------------- /mq/src/share/java/examples/helloworld/GNUmakefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Distribution License v. 1.0, which is available at 6 | # http://www.eclipse.org/org/documents/edl-v10.php. 7 | # 8 | # SPDX-License-Identifier: BSD-3-Clause 9 | # 10 | 11 | PACKAGE = 12 | TOPDIR = ../../../../.. 13 | MAKEDEFS = $(TOPDIR)/src/buildcfg/Defs.gmk 14 | DOCDEFS = $(TOPDIR)/src/buildcfg/Doc.gmk 15 | # 16 | # If you add an example, add the subdirectory here: 17 | # 18 | SUBDIRS = helloworldmessage helloworldmessagejndi 19 | 20 | include $(MAKEDEFS) 21 | 22 | all clean debug optimized : $(SUBDIRS) 23 | -------------------------------------------------------------------------------- /mq/main/mq-direct/lombok.config: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2022 Contributors to Eclipse Foundation. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | -------------------------------------------------------------------------------- /mq/main/mq-share/lombok.config: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2022 Contributors to Eclipse Foundation. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | -------------------------------------------------------------------------------- /mq/main/mq-ums/lombok.config: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2022 Contributors to Eclipse Foundation. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | -------------------------------------------------------------------------------- /mq/main/mqcomm-io/lombok.config: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2022 Contributors to Eclipse Foundation. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | -------------------------------------------------------------------------------- /mq/main/mqjmx-api/lombok.config: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2022 Contributors to Eclipse Foundation. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | -------------------------------------------------------------------------------- /mq/main/mqcomm-util/lombok.config: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2022 Contributors to Eclipse Foundation. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | -------------------------------------------------------------------------------- /mq/main/bridge/mqbridge-api/lombok.config: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2022 Contributors to Eclipse Foundation. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | -------------------------------------------------------------------------------- /mq/main/bridge/mqbridge-jms/lombok.config: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2022 Contributors to Eclipse Foundation. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | -------------------------------------------------------------------------------- /mq/main/jmsra/mqjmsra-ra/lombok.config: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2022 Contributors to Eclipse Foundation. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | -------------------------------------------------------------------------------- /mq/src/share/install/uninstaller.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | -------------------------------------------------------------------------------- /mq/src/share/java/examples/jms20/sharedsub/GNUmakefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Distribution License v. 1.0, which is available at 6 | # http://www.eclipse.org/org/documents/edl-v10.php. 7 | # 8 | # SPDX-License-Identifier: BSD-3-Clause 9 | # 10 | 11 | PACKAGE = 12 | TOPDIR = ../../../../../.. 13 | MAKEDEFS = $(TOPDIR)/src/buildcfg/Defs.gmk 14 | 15 | DEMOFILES.java = \ 16 | ProducerExample.java \ 17 | SharedNonDuraConsumerExample.java \ 18 | SharedDuraConsumerExample.java 19 | 20 | include $(MAKEDEFS) 21 | 22 | all optimized : $(DEMOFILES.class) 23 | debug : classes.debug 24 | clean : demo.clean 25 | -------------------------------------------------------------------------------- /mq/main/mq-admin/mqadmin-cli/lombok.config: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2022 Contributors to Eclipse Foundation. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | -------------------------------------------------------------------------------- /mq/main/mq-broker/mqbroker-core/lombok.config: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2025 Contributors to Eclipse Foundation. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | -------------------------------------------------------------------------------- /mq/main/mq-packager-opensource/lombok.config: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2022 Contributors to Eclipse Foundation. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | -------------------------------------------------------------------------------- /mq/src/solaris/etc/imqenv.conf: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 4 | # 5 | # This program and the accompanying materials are made available under the 6 | # terms of the Eclipse Public License v. 2.0, which is available at 7 | # http://www.eclipse.org/legal/epl-2.0. 8 | # 9 | # This Source Code may also be made available under the following Secondary 10 | # Licenses when the conditions for such availability set forth in the 11 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 12 | # version 2 with the GNU Classpath Exception, which is available at 13 | # https://www.gnu.org/software/classpath/license.html. 14 | # 15 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 16 | # 17 | 18 | -------------------------------------------------------------------------------- /mq/main/http-tunnel/mqhttp-tunnel/lombok.config: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2022 Contributors to Eclipse Foundation. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | -------------------------------------------------------------------------------- /mq/main/lombok.config: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2022 Contributors to Eclipse Foundation. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | config.stopBubbling = true 18 | 19 | -------------------------------------------------------------------------------- /mq/src/share/java/examples/jmx/GNUmakefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Distribution License v. 1.0, which is available at 6 | # http://www.eclipse.org/org/documents/edl-v10.php. 7 | # 8 | # SPDX-License-Identifier: BSD-3-Clause 9 | # 10 | 11 | PACKAGE = 12 | TOPDIR = ../../../../.. 13 | MAKEDEFS = $(TOPDIR)/src/buildcfg/Defs.gmk 14 | 15 | DEMOFILES.java = \ 16 | SimpleClient.java \ 17 | ListDestinations.java \ 18 | MQClusterMonitor.java \ 19 | MQConnectDialog.java \ 20 | MQLogViewer.java 21 | 22 | 23 | include $(MAKEDEFS) 24 | 25 | all optimized : $(DEMOFILES.class) 26 | debug : classes.debug 27 | clean : demo.clean 28 | -------------------------------------------------------------------------------- /docs/mq-admin-guide/src/main/jbake/content/part-appendixes.adoc: -------------------------------------------------------------------------------- 1 | type=page 2 | status=published 3 | title=Appendixes 4 | next=data-locations.html 5 | prev=java-es-monitoring-framework.html 6 | ~~~~~~ 7 | Appendixes 8 | ========== 9 | 10 | [[gbnuj]][[GMADG00144]][[part-iv]] 11 | 12 | Part IV + 13 | --------- 14 | 15 | [[appendixes]] 16 | Appendixes 17 | ---------- 18 | 19 | * link:data-locations.html#aeoow[Appendix A, "Distribution-Specific 20 | Locations of Message Queue Data"] 21 | * link:interface-stability.html#aeopa[Appendix B, "Stability of Message 22 | Queue Interfaces"] 23 | * link:http_https-support.html#aeopb[Appendix C, "HTTP/HTTPS Support"] 24 | * link:jmx-support.html#geoel[Appendix D, "JMX Support"] 25 | * link:frequent-commands.html#aeoqj[Appendix E, "Frequently Used Command 26 | Utility Commands"] 27 | 28 | 29 | -------------------------------------------------------------------------------- /mq/src/share/java/examples/stomp/README: -------------------------------------------------------------------------------- 1 | @(#)README 1.0 11/13/08 2 | 3 | STOMP Examples 4 | -------------- 5 | 6 | This README file describes the different categories of 7 | STOMP examples found in the directories listed below. 8 | 9 | Before you can run the examples, the broker's STOMP bridge service 10 | must be running. To enable STOMP bridge service, set the following 11 | properties in the broker's instance configuration file: 12 | 13 | imq.bridge.admin.user= 14 | imq.bridge.admin.password= 15 | imq.bridge.activelist=stomp 16 | imq.bridge.enabled=true 17 | 18 | 19 | Directory Description 20 | --------- ----------- 21 | ruby Contains sample programs that demonstrate how to 22 | create Ruby clients that use STOMP Protocol 23 | to send and receive messages. 24 | -------------------------------------------------------------------------------- /mq/main/jmsra/mqjmsra-ra/src/main/resources/com/sun/messaging/jms/blc/LogStrings.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | -------------------------------------------------------------------------------- /mq/main/jmsra/mqjmsra-ra/src/main/resources/com/sun/messaging/jms/ra/LogStrings.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | -------------------------------------------------------------------------------- /mq/src/share/install/install_regonly.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | PageFlow.Mode.ACTIVE_MODES_LIST=REG_ONLY 18 | -------------------------------------------------------------------------------- /mq/src/share/java/examples/jms20/syncqueue/MyObject.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Distribution License v. 1.0, which is available at 6 | * http://www.eclipse.org/org/documents/edl-v10.php. 7 | * 8 | * SPDX-License-Identifier: BSD-3-Clause 9 | */ 10 | 11 | import java.io.Serializable; 12 | 13 | /** MyObject.java 14 | * 15 | */ 16 | 17 | public class MyObject implements Serializable { 18 | 19 | private int value; 20 | 21 | MyObject(int value) { 22 | this.value = value; 23 | } 24 | 25 | int getValue() { 26 | return value; 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /mq/src/share/java/examples/jms20/GNUmakefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2013, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Distribution License v. 1.0, which is available at 6 | # http://www.eclipse.org/org/documents/edl-v10.php. 7 | # 8 | # SPDX-License-Identifier: BSD-3-Clause 9 | # 10 | 11 | PACKAGE = 12 | TOPDIR = ../../../../.. 13 | MAKEDEFS = $(TOPDIR)/src/buildcfg/Defs.gmk 14 | DOCDEFS = $(TOPDIR)/src/buildcfg/Doc.gmk 15 | # 16 | # If you add an example, add the subdirectory here: 17 | # 18 | SUBDIRS = asynctopicconsumer syncqueue deliverydelay messagegetbody messageproperties messageheader deliverycount selector asyncsend sharedsub 19 | 20 | include $(MAKEDEFS) 21 | 22 | all clean debug optimized : $(SUBDIRS) 23 | -------------------------------------------------------------------------------- /mq/src/win32/iasevalbin/jdk-env-ri.bat: -------------------------------------------------------------------------------- 1 | REM 2 | REM Copyright (c) 2010-2017 Oracle and/or its affiliates. All rights reserved. 3 | REM 4 | REM This program and the accompanying materials are made available under the 5 | REM terms of the Eclipse Public License v. 2.0, which is available at 6 | REM http://www.eclipse.org/legal/epl-2.0. 7 | REM 8 | REM This Source Code may also be made available under the following Secondary 9 | REM Licenses when the conditions for such availability set forth in the 10 | REM Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | REM version 2 with the GNU Classpath Exception, which is available at 12 | REM https://www.gnu.org/software/classpath/license.html. 13 | REM 14 | REM SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | REM 16 | 17 | set IMQ_JAVAHOME=c:\jdk1.5.0 18 | -------------------------------------------------------------------------------- /mq/src/win32/iasevalbin/jdk-env.bat: -------------------------------------------------------------------------------- 1 | REM 2 | REM Copyright (c) 2010-2017 Oracle and/or its affiliates. All rights reserved. 3 | REM 4 | REM This program and the accompanying materials are made available under the 5 | REM terms of the Eclipse Public License v. 2.0, which is available at 6 | REM http://www.eclipse.org/legal/epl-2.0. 7 | REM 8 | REM This Source Code may also be made available under the following Secondary 9 | REM Licenses when the conditions for such availability set forth in the 10 | REM Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | REM version 2 with the GNU Classpath Exception, which is available at 12 | REM https://www.gnu.org/software/classpath/license.html. 13 | REM 14 | REM SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | REM 16 | 17 | set IMQ_JAVAHOME= 18 | -------------------------------------------------------------------------------- /mq/src/share/java/examples/jaxm/GNUmakefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Distribution License v. 1.0, which is available at 6 | # http://www.eclipse.org/org/documents/edl-v10.php. 7 | # 8 | # SPDX-License-Identifier: BSD-3-Clause 9 | # 10 | 11 | PACKAGE = 12 | TOPDIR = ../../../../.. 13 | MAKEDEFS = $(TOPDIR)/src/buildcfg/Defs.gmk 14 | 15 | DEMOFILES.java = \ 16 | SendSOAPMessage.java \ 17 | SOAPEchoServlet.java \ 18 | SendSOAPMessageWithJMS.java \ 19 | ReceiveSOAPMessageWithJMS.java \ 20 | SOAPtoJMSServlet.java 21 | 22 | include $(MAKEDEFS) 23 | 24 | all optimized : $(DEMOFILES.class) 25 | debug : classes.debug 26 | clean : demo.clean 27 | -------------------------------------------------------------------------------- /mq/src/share/java/examples/monitoring/GNUmakefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Distribution License v. 1.0, which is available at 6 | # http://www.eclipse.org/org/documents/edl-v10.php. 7 | # 8 | # SPDX-License-Identifier: BSD-3-Clause 9 | # 10 | 11 | PACKAGE = 12 | TOPDIR = ../../../../.. 13 | MAKEDEFS = $(TOPDIR)/src/buildcfg/Defs.gmk 14 | 15 | DEMOFILES.java = \ 16 | BrokerMetrics.java \ 17 | DestListMetrics.java \ 18 | DestMetrics.java \ 19 | GNUmakefile \ 20 | MetricsPrinter.java \ 21 | MultiColumnPrinter.java \ 22 | VMMetrics.java 23 | 24 | 25 | include $(MAKEDEFS) 26 | 27 | all optimized : $(DEMOFILES.class) 28 | debug : classes.debug 29 | clean : demo.clean 30 | -------------------------------------------------------------------------------- /mq/src/share/java/visualvm/nbproject/platform.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | nbjdk.active=default 18 | nbplatform.active=VisualVM_1.2.2 19 | -------------------------------------------------------------------------------- /mq/src/share/java/examples/applications/mqapplet/mqapplet.html: -------------------------------------------------------------------------------- 1 | 2 | Message Queue Applet 3 | 14 | 15 | 16 | 17 |

Oracle GlassFish(tm) Server Message Queue http tunneling applet.

18 |

19 | 21 | You need the Java plugin to run this applet. 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /mq/src/share/install/mquninstall: -------------------------------------------------------------------------------- 1 | #!/bin/ksh 2 | # 3 | # Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 4 | # 5 | # This program and the accompanying materials are made available under the 6 | # terms of the Eclipse Public License v. 2.0, which is available at 7 | # http://www.eclipse.org/legal/epl-2.0. 8 | # 9 | # This Source Code may also be made available under the following Secondary 10 | # Licenses when the conditions for such availability set forth in the 11 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 12 | # version 2 with the GNU Classpath Exception, which is available at 13 | # https://www.gnu.org/software/classpath/license.html. 14 | # 15 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 16 | # 17 | 18 | # 19 | # Execute uninstall command 20 | ../../var/install/contents/mq/uninstaller $* 21 | -------------------------------------------------------------------------------- /mq/src/share/java/webapps/ums/META-INF/context.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /mq/src/share/install/mquninstall.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | REM 3 | REM Copyright (c) 2000-2018 Oracle and/or its affiliates. All rights reserved. 4 | REM 5 | REM This program and the accompanying materials are made available under the 6 | REM terms of the Eclipse Public License v. 2.0, which is available at 7 | REM http://www.eclipse.org/legal/epl-2.0. 8 | REM 9 | REM This Source Code may also be made available under the following Secondary 10 | REM Licenses when the conditions for such availability set forth in the 11 | REM Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 12 | REM version 2 with the GNU Classpath Exception, which is available at 13 | REM https://www.gnu.org/software/classpath/license.html. 14 | REM 15 | REM SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 16 | REM 17 | ..\..\var\install\contents\mq\uninstaller %1 %2 %3 %4 %5 %6 %7 %8 %9 18 | -------------------------------------------------------------------------------- /docs/mq-tech-over/src/main/jbake/content/lot.adoc: -------------------------------------------------------------------------------- 1 | type=page 2 | status=published 3 | title=List of Tables 4 | next=title.html 5 | prev=lof.html 6 | ~~~~~~ 7 | List of Tables 8 | ============== 9 | 10 | [[list-of-tables]] 11 | List of Tables 12 | -------------- 13 | 14 | * link:client-programming-model.html#gbpdd[2-1 JMS Programming Domains 15 | and Objects] 16 | * link:client-programming-model.html#BABGHFCA[2-2 Producing and Consuming 17 | Messages.] 18 | * link:client-programming-model.html#gbpdf[2-3 Producing and Consuming 19 | Messages.] 20 | * link:client-programming-model.html#gbpdo[2-4 JMS-Defined Message 21 | Header] 22 | * link:client-programming-model.html#gbpdn[2-5 Message Body Types] 23 | * link:broker-clusters.html#geqtx[4-1 Clustering Model Differences] 24 | * link:mq-features.html#gbpfs[A-1 Optional JMS Functionality] 25 | * link:mq-optional-jms-support.html#gbpgb[B-1 Message Queue Features] 26 | 27 | 28 | -------------------------------------------------------------------------------- /mq/src/share/install/install.properties-zip.unix: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | JDK.Installation.JDK_PRODUCT_NAME= 18 | JDKSelection.directory.JDK_VERSIONRANGE=JDK[1.5.0--INFINITY),JRE[1.5.0--INFINITY) 19 | -------------------------------------------------------------------------------- /mq/main/mq-client/src/main/resources/com/sun/messaging/AdminConnectionFactory_labels.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | imqAddress=L0531 18 | imqDefaultAdminUsername=L0532 19 | imqDefaultAdminPassword=L0533 20 | -------------------------------------------------------------------------------- /mq/main/mq-client/src/main/resources/com/sun/messaging/AdminConnectionFactory_defaults.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | imqAddress=mq://localhost:7676/jmxrmi 18 | imqDefaultAdminUsername=admin 19 | imqDefaultAdminPassword=admin 20 | -------------------------------------------------------------------------------- /mq/src/win32/GNUmakefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2003, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | TOPDIR = ../.. 18 | MAKEDEFS = $(TOPDIR)/src/buildcfg/Defs.gmk 19 | SUBDIRS = bin svc etc 20 | 21 | include $(MAKEDEFS) 22 | 23 | all optimized debug clean: $(SUBDIRS) 24 | 25 | -------------------------------------------------------------------------------- /mq/src/share/props/GNUmakefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2003, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | TOPDIR = ../../.. 18 | MAKEDEFS = $(TOPDIR)/src/buildcfg/Defs.gmk 19 | SUBDIRS = broker 20 | 21 | include $(MAKEDEFS) 22 | 23 | all optimized debug clean: $(SUBDIRS) 24 | 25 | -------------------------------------------------------------------------------- /mq/src/share/GNUmakefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2003, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | TOPDIR = ../.. 18 | MAKEDEFS = $(TOPDIR)/src/buildcfg/Defs.gmk 19 | SUBDIRS = java props security lib help etc 20 | 21 | include $(MAKEDEFS) 22 | 23 | all optimized debug clean: $(SUBDIRS) 24 | 25 | -------------------------------------------------------------------------------- /mq/src/share/java/visualvm/src/com/sun/messaging/visualvm/ui/ChartUpdater.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2010, 2017 Oracle and/or its affiliates. All rights reserved. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0, which is available at 6 | * http://www.eclipse.org/legal/epl-2.0. 7 | * 8 | * This Source Code may also be made available under the following Secondary 9 | * Licenses when the conditions for such availability set forth in the 10 | * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | * version 2 with the GNU Classpath Exception, which is available at 12 | * https://www.gnu.org/software/classpath/license.html. 13 | * 14 | * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | */ 16 | 17 | package com.sun.messaging.visualvm.ui; 18 | 19 | public interface ChartUpdater { 20 | 21 | void updateCharts(); 22 | 23 | } 24 | -------------------------------------------------------------------------------- /mq/src/share/lib/GNUmakefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2003, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | PACKAGE = 18 | TOPDIR = ../../.. 19 | MAKEDEFS = $(TOPDIR)/src/buildcfg/Defs.gmk 20 | SUBDIRS = images 21 | 22 | include $(MAKEDEFS) 23 | 24 | all optimized debug clean: $(SUBDIRS) 25 | -------------------------------------------------------------------------------- /mq/main/mq-client/src/main/java/com/sun/messaging/jmq/jmsclient/ContainerType.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2011, 2017 Oracle and/or its affiliates. All rights reserved. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0, which is available at 6 | * http://www.eclipse.org/legal/epl-2.0. 7 | * 8 | * This Source Code may also be made available under the following Secondary 9 | * Licenses when the conditions for such availability set forth in the 10 | * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | * version 2 with the GNU Classpath Exception, which is available at 12 | * https://www.gnu.org/software/classpath/license.html. 13 | * 14 | * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | */ 16 | 17 | package com.sun.messaging.jmq.jmsclient; 18 | 19 | public enum ContainerType { 20 | JavaSE, JavaEE_ACC, JavaEE_Web_or_EJB 21 | } 22 | -------------------------------------------------------------------------------- /mq/src/share/cclient/net/net_srcs.mk: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | CCLIENT_NET_SRCS_cpp = \ 18 | IPAddress.cpp 19 | 20 | CCLIENT_NET_SRCS_c = 21 | 22 | CCLIENT_NET_OBJS = $(basename $(CCLIENT_NET_SRCS_cpp) \ 23 | $(CCLIENT_NET_SRCS_c)) 24 | -------------------------------------------------------------------------------- /mq/src/share/java/examples/jaxm/SOAPEchoServlet.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | * Copyright (c) 2021 Contributors to the Eclipse Foundation 4 | * 5 | * This program and the accompanying materials are made available under the 6 | * terms of the Eclipse Distribution License v. 1.0, which is available at 7 | * http://www.eclipse.org/org/documents/edl-v10.php. 8 | * 9 | * SPDX-License-Identifier: BSD-3-Clause 10 | */ 11 | 12 | import jakarta.servlet.annotation.WebServlet; 13 | 14 | import jakarta.xml.soap.SOAPMessage; 15 | 16 | /** 17 | * This example echos the SOAP message received back to the sender. 18 | */ 19 | @WebServlet("/SOAPEchoServlet") 20 | public class SOAPEchoServlet extends JAXMServlet { 21 | 22 | /** 23 | * SOAP Message received is echoed back to the sender. 24 | */ 25 | public SOAPMessage onMessage (SOAPMessage soapMessage) { 26 | return soapMessage; 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /mq/src/share/lib/images/GNUmakefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2003, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | PACKAGE = 18 | TOPDIR = ../../../.. 19 | MAKEDEFS = $(TOPDIR)/src/buildcfg/Defs.gmk 20 | SUBDIRS = admin 21 | 22 | include $(MAKEDEFS) 23 | 24 | all optimized debug clean: $(SUBDIRS) 25 | -------------------------------------------------------------------------------- /mq/src/share/cclient/io/SocketTest.hpp: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0, which is available at 6 | * http://www.eclipse.org/legal/epl-2.0. 7 | * 8 | * This Source Code may also be made available under the following Secondary 9 | * Licenses when the conditions for such availability set forth in the 10 | * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | * version 2 with the GNU Classpath Exception, which is available at 12 | * https://www.gnu.org/software/classpath/license.html. 13 | * 14 | * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | */ 16 | 17 | /* 18 | * @(#)SocketTest.hpp 1.3 06/26/07 19 | */ 20 | 21 | #ifndef SOCKETTEST_HPP 22 | #define SOCKETTEST_HPP 23 | 24 | iMQError socketTest(FILE * const inputFile); 25 | 26 | #endif 27 | -------------------------------------------------------------------------------- /mq/src/win32/bin/GNUmakefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2003, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | TOPDIR = ../../.. 18 | MAKEDEFS = $(TOPDIR)/src/buildcfg/Defs.gmk 19 | 20 | 21 | include $(MAKEDEFS) 22 | 23 | 24 | all optimized : scripts 25 | 26 | debug: scripts.debug 27 | 28 | clean: scripts.clean 29 | 30 | -------------------------------------------------------------------------------- /mq/src/share/java/visualvm/nbproject/project.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | javac.source=1.6 18 | javac.compilerargs=-Xlint -Xlint:-serial 19 | license.file=LICENSE.txt 20 | nbm.homepage=https://mq.java.net/ 21 | nbm.module.author=Glassfish Message Queue Engineering Team 22 | -------------------------------------------------------------------------------- /mq/src/win32/etc/GNUmakefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2004, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | TOPDIR = ../../.. 18 | MAKEDEFS = $(TOPDIR)/src/buildcfg/Defs.gmk 19 | 20 | 21 | include $(MAKEDEFS) 22 | 23 | 24 | all optimized : etcfiles 25 | 26 | debug: etcfiles.debug 27 | 28 | clean: etcfiles.clean 29 | 30 | -------------------------------------------------------------------------------- /mq/src/share/install/install/templates/zip/Splash.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | SPLASH_HEADER=Open Message Queue 5.0 18 | SPLASH_SUB_HEADER= 19 | SPLASH_FOOTER=Visit oracle.com 20 | SPLASH_SUB_FOOTER=Copyright (c) 2011, 2017 Oracle and/or its affiliates. All rights reserved. 21 | -------------------------------------------------------------------------------- /mq/src/share/install/install_regonly.properties.windows: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | InstallHome.directory.INSTALL_HOME=c:\\Program Files\\Oracle\\MessageQueue 18 | InstallDirectory.directory.INSTALL_DIRECTORY=c:\\Program Files\\Oracle\\MessageQueue 19 | PageFlow.Mode.ACTIVE_MODES_LIST=REG_ONLY 20 | -------------------------------------------------------------------------------- /mq/.jakartaee-catalog.xml: -------------------------------------------------------------------------------- 1 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /mq/src/share/install/install/templates/zip/Splash_es_ES.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | SPLASH_HEADER=Open Message Queue 4.5 18 | SPLASH_SUB_HEADER= 19 | SPLASH_FOOTER=Visite oracle.com 20 | SPLASH_SUB_FOOTER=Copyright (c) 2010, 2017 Oracle y/o sus filiales. Todos los derechos reservados. 21 | -------------------------------------------------------------------------------- /mq/main/mq-ums/src/main/java/com/sun/messaging/xml/MessageTransformerException.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2021 Contributors to the Eclipse Foundation 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0, which is available at 6 | * http://www.eclipse.org/legal/epl-2.0. 7 | * 8 | * This Source Code may also be made available under the following Secondary 9 | * Licenses when the conditions for such availability set forth in the 10 | * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | * version 2 with the GNU Classpath Exception, which is available at 12 | * https://www.gnu.org/software/classpath/license.html. 13 | * 14 | * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | */ 16 | 17 | package com.sun.messaging.xml; 18 | 19 | class MessageTransformerException extends Exception { 20 | 21 | MessageTransformerException(Exception e) { 22 | super(e); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /mq/src/share/cclient/error/error_srcs.mk: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | CCLIENT_ERROR_SRCS_cpp = \ 18 | ErrorCodes.cpp \ 19 | ErrorTrace.cpp 20 | 21 | CCLIENT_ERROR_SRCS_c = 22 | 23 | CCLIENT_ERROR_OBJS = $(basename $(CCLIENT_ERROR_SRCS_cpp) \ 24 | $(CCLIENT_ERROR_SRCS_c)) 25 | -------------------------------------------------------------------------------- /mq/src/share/install/GNUmakefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | PACKAGE = 18 | TOPDIR = ../../.. 19 | MAKEDEFS = $(TOPDIR)/src/buildcfg/Defs.gmk 20 | DOCDEFS = $(TOPDIR)/src/buildcfg/Doc.gmk 21 | SUBDIRS = sys 22 | 23 | include $(MAKEDEFS) 24 | 25 | all clean debug optimized : $(SUBDIRS) 26 | -------------------------------------------------------------------------------- /mq/src/share/install/install/templates/Splash.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | SPLASH_HEADER=Oracle GlassFish(tm) Server Message Queue 5.1.1 18 | SPLASH_SUB_HEADER= 19 | SPLASH_FOOTER=Visit oracle.com 20 | SPLASH_SUB_FOOTER=Copyright (c) 2011, 2017 Oracle and/or its affiliates. All rights reserved. 21 | -------------------------------------------------------------------------------- /mq/src/share/install/install/templates/zip/Splash_fr_FR.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | SPLASH_HEADER=Open Message Queue 4.5 18 | SPLASH_SUB_HEADER= 19 | SPLASH_FOOTER=Visitez le site oracle.com 20 | SPLASH_SUB_FOOTER=Copyright (c) 2010, 2017 Oracle et/ou ses filiales. Tous droits r\u00e9serv\u00e9s. 21 | -------------------------------------------------------------------------------- /mq/src/share/install/install/templates/zip/Splash_it_IT.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | SPLASH_HEADER=Aprire Message Queue 4.5 18 | SPLASH_SUB_HEADER= 19 | SPLASH_FOOTER=Visitare oracle.com 20 | SPLASH_SUB_FOOTER=Copyright \u00a9 2010, 2017 Oracle e/o relative consociate. Tutti i diritti riservati. 21 | -------------------------------------------------------------------------------- /mq/src/share/install/sys/GNUmakefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | PACKAGE = 18 | TOPDIR = ../../../.. 19 | MAKEDEFS = $(TOPDIR)/src/buildcfg/Defs.gmk 20 | DOCDEFS = $(TOPDIR)/src/buildcfg/Doc.gmk 21 | SUBDIRS = mq 22 | 23 | include $(MAKEDEFS) 24 | 25 | all clean debug optimized : $(SUBDIRS) 26 | -------------------------------------------------------------------------------- /mq/src/share/install/install/templates/zip/Splash_de_DE.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | SPLASH_HEADER=Open Message Queue 4.5 18 | SPLASH_SUB_HEADER= 19 | SPLASH_FOOTER=Besuchen Sie oracle.com 20 | SPLASH_SUB_FOOTER=Copyright (c) 2010, 2017 Oracle und/oder seine Tochtergesellschaften. Alle Rechte vorbehalten. 21 | -------------------------------------------------------------------------------- /mq/src/share/java/examples/monitoring/MetricsPrinter.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Distribution License v. 1.0, which is available at 6 | * http://www.eclipse.org/org/documents/edl-v10.php. 7 | * 8 | * SPDX-License-Identifier: BSD-3-Clause 9 | */ 10 | 11 | /* 12 | * Class used to print metrics information received from the MQ broker. 13 | */ 14 | public class MetricsPrinter extends MultiColumnPrinter { 15 | public MetricsPrinter(int numCols, int gap, String border, int align) { 16 | super(numCols, gap, border, align); 17 | } 18 | 19 | public MetricsPrinter(int numCols, int gap, String border) { 20 | super(numCols, gap, border); 21 | } 22 | 23 | public void doPrint(String str) { 24 | System.out.print(str); 25 | } 26 | 27 | public void doPrintln(String str) { 28 | System.out.println(str); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /mq/main/copyright-exclude: -------------------------------------------------------------------------------- 1 | copyright-exclude 2 | http-tunnel/mqhttp-tunnel/src/main/java/com/sun/messaging/jmq/httptunnel/tunnel/servlet/HttpUtils.java 3 | mq/main/mq-client/src/main/java/com/sun/messaging/jmq/jmsclient/MessageImpl.java 4 | mq/main/mq-broker/mq-cluster/src/main/java/com/sun/messaging/jmq/jmsserver/multibroker/multibroker.robochart 5 | mq/main/mq-broker/mq-cluster/src/main/java/com/sun/messaging/jmq/jmsserver/multibroker/protocol.txt 6 | mq/main/mq-broker/mq-cluster/src/main/java/com/sun/messaging/jmq/jmsserver/multibroker/README.txt 7 | mq/main/mq-broker/mq-cluster/src/main/java/com/sun/messaging/jmq/jmsserver/cluster/manager/ha/README 8 | mq/main/helpfiles/src/main/resources/images/Broker16X.gif 9 | mq/main/helpfiles/src/main/resources/images/ObjectStoreX16X.gif 10 | mq/main/helpfiles/src/main/resources/images/console.gif 11 | mq/main/helpfiles/src/main/resources/images/ObjectStore16x.gif 12 | mq/main/helpfiles/src/main/resources/images/BrokerX16X.gif 13 | mq/main/helpfiles/src/main/resources/images/AppIcon16xCDE.gif 14 | 15 | -------------------------------------------------------------------------------- /mq/src/share/install/install/templates/Splash_es_ES.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | SPLASH_HEADER=GlassFish(tm) Server Message Queue 5.1.1 de Oracle 18 | SPLASH_SUB_HEADER= 19 | SPLASH_FOOTER=Visite oracle.com 20 | SPLASH_SUB_FOOTER=Copyright (c) 2010, 2017 Oracle y/o sus filiales. Todos los derechos reservados. 21 | -------------------------------------------------------------------------------- /mq/src/share/install/sys/mq/GNUmakefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | PACKAGE = 18 | TOPDIR = ../../../../.. 19 | MAKEDEFS = $(TOPDIR)/src/buildcfg/Defs.gmk 20 | DOCDEFS = $(TOPDIR)/src/buildcfg/Doc.gmk 21 | SUBDIRS = bin 22 | 23 | include $(MAKEDEFS) 24 | 25 | all clean debug optimized : $(SUBDIRS) 26 | -------------------------------------------------------------------------------- /mq/src/share/install/README: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | #Make the package 18 | pkgmk -a all -b /ru1/17160/200702092015/src/pkgdefs/.. -o -v 1.0,REV=2007.02.09.16.40 -d . SUNWmq-install 19 | 20 | #Transfer package to media image 21 | pkgtrans . /path/to/media_image/Product/UNIX/SOLARIS/SPARC|X86/5.10/Packages/SUNWmq-install SUNWmq-install 22 | -------------------------------------------------------------------------------- /mq/src/share/install/install/templates/Splash_fr_FR.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | SPLASH_HEADER=Oracle GlassFish(tm) Server Message Queue 5.1.1 18 | SPLASH_SUB_HEADER= 19 | SPLASH_FOOTER=Visitez le site oracle.com 20 | SPLASH_SUB_FOOTER=Copyright (c) 2010, 2017 Oracle et/ou ses filiales. Tous droits r\u00e9serv\u00e9s. 21 | -------------------------------------------------------------------------------- /mq/src/share/install/install/templates/Splash_it_IT.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | SPLASH_HEADER=Server Message Queue 5.1.1 di Oracle GlassFish(tm) 18 | SPLASH_SUB_HEADER= 19 | SPLASH_FOOTER=Visitare oracle.com 20 | SPLASH_SUB_FOOTER=Copyright \u00a9 2010, 2017 Oracle e/o relative consociate. Tutti i diritti riservati. 21 | -------------------------------------------------------------------------------- /mq/src/share/java/examples/stomp/ruby/README: -------------------------------------------------------------------------------- 1 | @(#)README 1.0 11/10/08 2 | 3 | STOMP examples 4 | 5 | Description 6 | ----------- 7 | This directory contains MQ STOMP examples that illustrates the use of the 8 | STOMP protocol to send and receive JMS message. 9 | 10 | Files 11 | ----- 12 | SendMsg.rb Source file for Ruby STOMP client that sends text 13 | message to a MQ STOMP server. 14 | ReceiveMsg.rb Source file for Ruby Stomp client that receives text 15 | message from a MQ STOMP server. 16 | README This file. 17 | 18 | Configuring the environment 19 | --------------------------- 20 | SendMsg.rb and ReceiveMsg.rb require Ruby 1.8.6 or later version. 21 | A compatible Ruby interpreter such as JRuby 1.1.5 can also be used. 22 | 23 | Running the example 24 | ------------------- 25 | The examples can be run using the ruby command, e.g. 26 | 27 | ruby -h 28 | 29 | or 30 | 31 | jruby -h 32 | 33 | For example, 34 | 35 | ruby SendMsg.rb -h 36 | 37 | or 38 | 39 | jruby SendMsg.rb -h 40 | -------------------------------------------------------------------------------- /mq/src/share/cclient/client/ReceiveMode.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0, which is available at 6 | * http://www.eclipse.org/legal/epl-2.0. 7 | * 8 | * This Source Code may also be made available under the following Secondary 9 | * Licenses when the conditions for such availability set forth in the 10 | * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | * version 2 with the GNU Classpath Exception, which is available at 12 | * https://www.gnu.org/software/classpath/license.html. 13 | * 14 | * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | */ 16 | 17 | /* 18 | * @(#)ReceiveMode.h 1.3 06/26/07 19 | */ 20 | 21 | #ifndef RECEIVEMODE_H 22 | #define RECEIVEMODE_H 23 | 24 | typedef enum _ReceiveMode {SESSION_SYNC_RECEIVE=0, SESSION_ASYNC_RECEIVE=1} ReceiveMode; 25 | 26 | #endif /* RECEIVEMODE_H */ 27 | -------------------------------------------------------------------------------- /mq/src/share/cclient/util/util_srcs.mk: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | CCLIENT_UTIL_SRCS_cpp = \ 18 | Logger.cpp \ 19 | utf8.cpp \ 20 | MemAllocTest.cpp 21 | 22 | CCLIENT_UTIL_SRCS_c = \ 23 | PRTypesUtils.c 24 | 25 | CCLIENT_UTIL_OBJS = $(basename $(CCLIENT_UTIL_SRCS_cpp) \ 26 | $(CCLIENT_UTIL_SRCS_c)) 27 | -------------------------------------------------------------------------------- /mq/src/share/install/install/templates/Splash_de_DE.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | SPLASH_HEADER=Oracle GlassFish(tm) Server Message Queue 5.1.1 18 | SPLASH_SUB_HEADER= 19 | SPLASH_FOOTER=Besuchen Sie oracle.com 20 | SPLASH_SUB_FOOTER=Copyright (c) 2010, 2017 Oracle und/oder seine Tochtergesellschaften. Alle Rechte vorbehalten. 21 | -------------------------------------------------------------------------------- /mq/src/share/install/install/templates/zip/Splash_zh_TW.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | SPLASH_HEADER=Open Message Queue 4.5 18 | SPLASH_SUB_HEADER= 19 | SPLASH_FOOTER=\u700f\u89bd oracle.com 20 | SPLASH_SUB_FOOTER=Copyright (c) 2017\uff0cOracle \u548c (\u6216) \u5176\u9644\u5c6c\u516c\u53f8\u3002\u7248\u6b0a\u6240\u6709\u3002 21 | -------------------------------------------------------------------------------- /docs/mq-admin-guide/src/main/jbake/content/part-reference.adoc: -------------------------------------------------------------------------------- 1 | type=page 2 | status=published 3 | title=Reference 4 | next=command-line-reference.html 5 | prev=troubleshooting.html 6 | ~~~~~~ 7 | Reference 8 | ========= 9 | 10 | [[gbnvd]][[GMADG00143]][[part-iii]] 11 | 12 | Part III + 13 | ---------- 14 | 15 | [[reference]] 16 | Reference 17 | --------- 18 | 19 | * link:command-line-reference.html#aeonc[Chapter 16, "Command Line 20 | Reference"] 21 | * link:broker-properties.html#aeons[Chapter 17, "Broker Properties 22 | Reference"] 23 | * link:physical-destination-properties.html#aeooc[Chapter 18, "Physical 24 | Destination Property Reference"] 25 | * link:administered-object-attributes.html#aeood[Chapter 19, 26 | "Administered Object Attribute Reference"] 27 | * link:jmsra-properties.html#aeoon[Chapter 20, "JMS Resource Adapter 28 | Property Reference"] 29 | * link:metrics-information.html#aeoor[Chapter 21, "Metrics Information 30 | Reference"] 31 | * link:java-es-monitoring-framework.html#gfomw[Chapter 22, "JES 32 | Monitoring Framework Reference"] 33 | 34 | 35 | -------------------------------------------------------------------------------- /mq/main/mqcomm-util/src/main/java/com/sun/messaging/jmq/util/lists/Ordered.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | * Copyright (c) 2021 Contributors to the Eclipse Foundation 4 | * 5 | * This program and the accompanying materials are made available under the 6 | * terms of the Eclipse Public License v. 2.0, which is available at 7 | * http://www.eclipse.org/legal/epl-2.0. 8 | * 9 | * This Source Code may also be made available under the following Secondary 10 | * Licenses when the conditions for such availability set forth in the 11 | * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 12 | * version 2 with the GNU Classpath Exception, which is available at 13 | * https://www.gnu.org/software/classpath/license.html. 14 | * 15 | * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 16 | */ 17 | 18 | package com.sun.messaging.jmq.util.lists; 19 | 20 | public interface Ordered { 21 | 22 | Object getOrder(); 23 | 24 | void setOrder(Object pos); 25 | } 26 | -------------------------------------------------------------------------------- /mq/src/share/install/install/templates/zip/Splash_ja_JP.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | SPLASH_HEADER=Open Message Queue 4.5 18 | SPLASH_SUB_HEADER= 19 | SPLASH_FOOTER=oracle.com \u306b\u30a2\u30af\u30bb\u30b9\u3057\u3066\u304f\u3060\u3055\u3044 20 | SPLASH_SUB_FOOTER=Copyright (c) 2010, 2017 Oracle and/or its affiliates. All rights reserved. 21 | -------------------------------------------------------------------------------- /mq/main/mqcomm-util/src/main/java/com/sun/messaging/jmq/util/IDLock.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2022 Contributors to the Eclipse Foundation 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0, which is available at 6 | * http://www.eclipse.org/legal/epl-2.0. 7 | * 8 | * This Source Code may also be made available under the following Secondary 9 | * Licenses when the conditions for such availability set forth in the 10 | * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | * version 2 with the GNU Classpath Exception, which is available at 12 | * https://www.gnu.org/software/classpath/license.html. 13 | * 14 | * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | */ 16 | 17 | package com.sun.messaging.jmq.util; 18 | 19 | class IDLock { 20 | boolean valid = true; 21 | 22 | public void destroy() { 23 | valid = false; 24 | } 25 | 26 | public boolean isValid() { 27 | return valid; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /mq/src/share/install/install.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | InstallHome.directory.INSTALL_HOME=/ 18 | InstallDirectory.directory.INSTALL_DIRECTORY=/ 19 | JDK.Installation.JDK_HOME_BASEDIR=usr/jdk/instances/jdk1.5.0 20 | JDK.Installation.JDK_PRODUCT_NAME=jdk5 21 | JDKSelection.directory.JDK_VERSIONRANGE=JDK[1.5.0_06--INFINITY),JRE[1.5.0_06--INFINITY) 22 | -------------------------------------------------------------------------------- /mq/src/share/install/install.properties.linux: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | InstallHome.directory.INSTALL_HOME=/ 18 | InstallDirectory.directory.INSTALL_DIRECTORY=/ 19 | JDK.Installation.JDK_HOME_BASEDIR=usr/java/jdk1.5.0_15 20 | JDK.Installation.JDK_PRODUCT_NAME=jdk5 21 | JDKSelection.directory.JDK_VERSIONRANGE=JDK[1.5.0_06--INFINITY),JRE[1.5.0_06--INFINITY) 22 | -------------------------------------------------------------------------------- /mq/src/share/install/install/templates/Splash_zh_TW.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | SPLASH_HEADER=Oracle GlassFish(tm) Server Message Queue 5.1.1 18 | SPLASH_SUB_HEADER= 19 | SPLASH_FOOTER=\u700f\u89bd oracle.com 20 | SPLASH_SUB_FOOTER=Copyright (c) 2017\uff0cOracle \u548c (\u6216) \u5176\u9644\u5c6c\u516c\u53f8\u3002\u7248\u6b0a\u6240\u6709\u3002 21 | -------------------------------------------------------------------------------- /mq/src/share/install/install/templates/zip/Splash_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | SPLASH_HEADER=Open Message Queue 4.5 18 | SPLASH_SUB_HEADER= 19 | SPLASH_FOOTER=\u8bbf\u95ee oracle.com 20 | SPLASH_SUB_FOOTER=\u7248\u6743\u6240\u6709 (c) 2017\uff0cOracle \u548c/\u6216\u5176\u9644\u5c5e\u516c\u53f8\u3002\u4fdd\u7559\u6240\u6709\u6743\u5229\u3002 21 | -------------------------------------------------------------------------------- /mq/src/share/props/admin/GNUmakefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2003, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | PACKAGE = admin 18 | TOPDIR = ../../../.. 19 | MAKEDEFS = $(TOPDIR)/src/buildcfg/Defs.gmk 20 | SUBDIRS = 21 | 22 | FILES.properties= 23 | 24 | include $(MAKEDEFS) 25 | 26 | all opt: props.copy 27 | 28 | debug: props.debug 29 | 30 | clean: props.clean 31 | 32 | -------------------------------------------------------------------------------- /mq/main/jmsra/mqjmsra-api/src/main/java/com/sun/messaging/jms/ra/api/JMSRASessionAdapter.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | * Copyright (c) 2021 Contributors to the Eclipse Foundation 4 | * 5 | * This program and the accompanying materials are made available under the 6 | * terms of the Eclipse Public License v. 2.0, which is available at 7 | * http://www.eclipse.org/legal/epl-2.0. 8 | * 9 | * This Source Code may also be made available under the following Secondary 10 | * Licenses when the conditions for such availability set forth in the 11 | * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 12 | * version 2 with the GNU Classpath Exception, which is available at 13 | * https://www.gnu.org/software/classpath/license.html. 14 | * 15 | * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 16 | */ 17 | 18 | package com.sun.messaging.jms.ra.api; 19 | 20 | /** 21 | */ 22 | public interface JMSRASessionAdapter { 23 | JMSRAXASession getJMSRAXASession(); 24 | } 25 | -------------------------------------------------------------------------------- /mq/main/mqcomm-util/src/main/java/com/sun/messaging/jmq/util/synchronizer/CloseInProgressCallback.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | * Copyright (c) 2021 Contributors to the Eclipse Foundation 4 | * 5 | * This program and the accompanying materials are made available under the 6 | * terms of the Eclipse Public License v. 2.0, which is available at 7 | * http://www.eclipse.org/legal/epl-2.0. 8 | * 9 | * This Source Code may also be made available under the following Secondary 10 | * Licenses when the conditions for such availability set forth in the 11 | * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 12 | * version 2 with the GNU Classpath Exception, which is available at 13 | * https://www.gnu.org/software/classpath/license.html. 14 | * 15 | * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 16 | */ 17 | 18 | package com.sun.messaging.jmq.util.synchronizer; 19 | 20 | public interface CloseInProgressCallback { 21 | void beforeWaitAfterSetClosed(); 22 | } 23 | -------------------------------------------------------------------------------- /mq/src/share/etc/GNUmakefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2003, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | PACKAGE = 18 | TOPDIR = ../../.. 19 | MAKEDEFS = $(TOPDIR)/src/buildcfg/Defs.gmk 20 | SUBDIRS = 21 | 22 | include $(MAKEDEFS) 23 | 24 | # 25 | # copies the *.sample files to binary/share/opt|debug/etc 26 | # 27 | all optimized: etc.copy 28 | debug: etc.debug 29 | clean: etc.clean 30 | 31 | -------------------------------------------------------------------------------- /mq/main/jmsra/mqjmsra-api/src/main/java/com/sun/messaging/jms/ra/api/JMSRAEndpointConsumer.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2000, 2020 Oracle and/or its affiliates. All rights reserved. 3 | * Copyright (c) 2021 Contributors to the Eclipse Foundation 4 | * 5 | * This program and the accompanying materials are made available under the 6 | * terms of the Eclipse Public License v. 2.0, which is available at 7 | * http://www.eclipse.org/legal/epl-2.0. 8 | * 9 | * This Source Code may also be made available under the following Secondary 10 | * Licenses when the conditions for such availability set forth in the 11 | * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 12 | * version 2 with the GNU Classpath Exception, which is available at 13 | * https://www.gnu.org/software/classpath/license.html. 14 | * 15 | * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 16 | */ 17 | 18 | package com.sun.messaging.jms.ra.api; 19 | 20 | /** 21 | */ 22 | public interface JMSRAEndpointConsumer { 23 | jakarta.jms.XASession getXASession(); 24 | 25 | } 26 | -------------------------------------------------------------------------------- /mq/src/share/install/install.properties.windows: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | InstallHome.directory.INSTALL_HOME=c:\\Program Files\\Oracle\\MessageQueue 18 | InstallDirectory.directory.INSTALL_DIRECTORY=c:\\Program Files\\Oracle\\MessageQueue 19 | JDK.Installation.JDK_PRODUCT_NAME= 20 | JDKSelection.directory.JDK_VERSIONRANGE=JDK[1.5.0_06--INFINITY),JRE[1.5.0_06--INFINITY) 21 | -------------------------------------------------------------------------------- /mq/src/share/install/install/templates/Splash_ja_JP.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | SPLASH_HEADER=Oracle GlassFish(tm) Server Message Queue 5.1.1 18 | SPLASH_SUB_HEADER= 19 | SPLASH_FOOTER=oracle.com \u306b\u30a2\u30af\u30bb\u30b9\u3057\u3066\u304f\u3060\u3055\u3044 20 | SPLASH_SUB_FOOTER=Copyright (c) 2010, 2017 Oracle and/or its affiliates. All rights reserved. 21 | -------------------------------------------------------------------------------- /mq/src/share/install/install/templates/zip/Splash_ko_KR.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | SPLASH_HEADER=Open Message Queue 4.5 18 | SPLASH_SUB_HEADER= 19 | SPLASH_FOOTER=oracle.com \ubc29\ubb38 20 | SPLASH_SUB_FOOTER=Copyright (c) 2010, 2017 Oracle and/or its affiliates. \ubaa8\ub4e0 \uad8c\ub9ac\ub294 \uc800\uc791\uad8c\uc790\uc758 \uc18c\uc720\uc785\ub2c8\ub2e4. 21 | -------------------------------------------------------------------------------- /mq/main/mq-logger/src/main/java/com/sun/messaging/jmq/util/log/LogRecord.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2022 Contributors to the Eclipse Foundation 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0, which is available at 6 | * http://www.eclipse.org/legal/epl-2.0. 7 | * 8 | * This Source Code may also be made available under the following Secondary 9 | * Licenses when the conditions for such availability set forth in the 10 | * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | * version 2 with the GNU Classpath Exception, which is available at 12 | * https://www.gnu.org/software/classpath/license.html. 13 | * 14 | * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | */ 16 | 17 | package com.sun.messaging.jmq.util.log; 18 | 19 | class LogRecord { 20 | public int level; 21 | public String message; 22 | 23 | LogRecord(int level, String message) { 24 | this.level = level; 25 | this.message = message; 26 | } 27 | } 28 | 29 | -------------------------------------------------------------------------------- /mq/main/mq-broker/mqbroker-core/src/main/java/com/sun/messaging/jmq/jmsserver/net/ProtocolCallback.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | * Copyright (c) 2021 Contributors to the Eclipse Foundation 4 | * 5 | * This program and the accompanying materials are made available under the 6 | * terms of the Eclipse Public License v. 2.0, which is available at 7 | * http://www.eclipse.org/legal/epl-2.0. 8 | * 9 | * This Source Code may also be made available under the following Secondary 10 | * Licenses when the conditions for such availability set forth in the 11 | * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 12 | * version 2 with the GNU Classpath Exception, which is available at 13 | * https://www.gnu.org/software/classpath/license.html. 14 | * 15 | * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 16 | */ 17 | 18 | package com.sun.messaging.jmq.jmsserver.net; 19 | 20 | public interface ProtocolCallback { 21 | void socketUpdated(Object data, int port, String hostname); 22 | } 23 | -------------------------------------------------------------------------------- /mq/main/mqcomm-io/exclude.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /mq/src/share/etc/registry/servicetag.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | 20 | 25 | 26 | -------------------------------------------------------------------------------- /mq/src/share/install/install/templates/Splash_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | SPLASH_HEADER=Oracle GlassFish(tm) Server Message Queue 5.1.1 18 | SPLASH_SUB_HEADER= 19 | SPLASH_FOOTER=\u8bbf\u95ee oracle.com 20 | SPLASH_SUB_FOOTER=\u7248\u6743\u6240\u6709 (c) 2017\uff0cOracle \u548c/\u6216\u5176\u9644\u5c5e\u516c\u53f8\u3002\u4fdd\u7559\u6240\u6709\u6743\u5229\u3002 21 | -------------------------------------------------------------------------------- /mq/src/share/cclient/client/auth/auth_srcs.mk: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | CCLIENT_CLIENT_AUTH_SRCS_cpp = \ 18 | JMQDigestAuthenticationHandler.cpp \ 19 | JMQBasicAuthenticationHandler.cpp 20 | 21 | CCLIENT_CLIENT_AUTH_SRCS_c = 22 | 23 | CCLIENT_CLIENT_AUTH_OBJS = $(basename $(CCLIENT_CLIENT_AUTH_SRCS_cpp) \ 24 | $(CCLIENT_CLIENT_AUTH_SRCS_c)) 25 | -------------------------------------------------------------------------------- /mq/src/share/security/GNUmakefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2003, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | PACKAGE = 18 | TOPDIR = ../../.. 19 | MAKEDEFS = $(TOPDIR)/src/buildcfg/Defs.gmk 20 | SUBDIRS = 21 | 22 | include $(MAKEDEFS) 23 | 24 | # 25 | # copies the *.policy files to binary/share/opt|debug/security 26 | # 27 | all optimized: policy.copy 28 | debug: policy.debug 29 | clean: policy.clean 30 | 31 | -------------------------------------------------------------------------------- /mq/main/bridge/mqbridge-api/src/main/java/com/sun/messaging/bridge/api/StompSubscriber.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | * Copyright (c) 2021 Contributors to the Eclipse Foundation 4 | * 5 | * This program and the accompanying materials are made available under the 6 | * terms of the Eclipse Public License v. 2.0, which is available at 7 | * http://www.eclipse.org/legal/epl-2.0. 8 | * 9 | * This Source Code may also be made available under the following Secondary 10 | * Licenses when the conditions for such availability set forth in the 11 | * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 12 | * version 2 with the GNU Classpath Exception, which is available at 13 | * https://www.gnu.org/software/classpath/license.html. 14 | * 15 | * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 16 | */ 17 | 18 | package com.sun.messaging.bridge.api; 19 | 20 | /** 21 | * @author amyk 22 | */ 23 | public interface StompSubscriber { 24 | 25 | void startDelivery() throws Exception; 26 | 27 | } 28 | -------------------------------------------------------------------------------- /mq/main/mq-broker/mqbroker-core/src/main/java/com/sun/messaging/jmq/jmsserver/tlsutil/SSLPropertyMap.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | * Copyright (c) 2021 Contributors to the Eclipse Foundation 4 | * 5 | * This program and the accompanying materials are made available under the 6 | * terms of the Eclipse Public License v. 2.0, which is available at 7 | * http://www.eclipse.org/legal/epl-2.0. 8 | * 9 | * This Source Code may also be made available under the following Secondary 10 | * Licenses when the conditions for such availability set forth in the 11 | * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 12 | * version 2 with the GNU Classpath Exception, which is available at 13 | * https://www.gnu.org/software/classpath/license.html. 14 | * 15 | * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 16 | */ 17 | 18 | package com.sun.messaging.jmq.jmsserver.tlsutil; 19 | 20 | public interface SSLPropertyMap { 21 | 22 | String mapSSLProperty(String property) throws Exception; 23 | 24 | } 25 | -------------------------------------------------------------------------------- /mq/main/mq-direct/src/main/java/com/sun/messaging/jmq/jmsservice/HandOffQueue.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2012, 2017 Oracle and/or its affiliates. All rights reserved. 3 | * Copyright (c) 2021 Contributors to the Eclipse Foundation 4 | * 5 | * This program and the accompanying materials are made available under the 6 | * terms of the Eclipse Public License v. 2.0, which is available at 7 | * http://www.eclipse.org/legal/epl-2.0. 8 | * 9 | * This Source Code may also be made available under the following Secondary 10 | * Licenses when the conditions for such availability set forth in the 11 | * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 12 | * version 2 with the GNU Classpath Exception, which is available at 13 | * https://www.gnu.org/software/classpath/license.html. 14 | * 15 | * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 16 | */ 17 | 18 | package com.sun.messaging.jmq.jmsservice; 19 | 20 | public interface HandOffQueue { 21 | E take() throws InterruptedException; 22 | 23 | void put(E e) throws InterruptedException; 24 | } 25 | -------------------------------------------------------------------------------- /mq/src/share/install/install/templates/Splash_ko_KR.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | SPLASH_HEADER=Oracle GlassFish(tm) Server Message Queue 5.1.1 18 | SPLASH_SUB_HEADER= 19 | SPLASH_FOOTER=oracle.com \ubc29\ubb38 20 | SPLASH_SUB_FOOTER=Copyright (c) 2010, 2017 Oracle and/or its affiliates. \ubaa8\ub4e0 \uad8c\ub9ac\ub294 \uc800\uc791\uad8c\uc790\uc758 \uc18c\uc720\uc785\ub2c8\ub2e4. 21 | -------------------------------------------------------------------------------- /mq/src/share/java/visualvm/src/com/sun/messaging/visualvm/ui/MQUIEventListener.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0, which is available at 6 | * http://www.eclipse.org/legal/epl-2.0. 7 | * 8 | * This Source Code may also be made available under the following Secondary 9 | * Licenses when the conditions for such availability set forth in the 10 | * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | * version 2 with the GNU Classpath Exception, which is available at 12 | * https://www.gnu.org/software/classpath/license.html. 13 | * 14 | * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | */ 16 | 17 | package com.sun.messaging.visualvm.ui; 18 | 19 | import java.util.EventListener; 20 | 21 | /** 22 | * 23 | * @author isa 24 | */ 25 | public interface MQUIEventListener extends EventListener { 26 | 27 | public void mqUIEventDispatched(MQUIEvent e); 28 | } 29 | -------------------------------------------------------------------------------- /mq/src/share/cclient/serial/serial_srcs.mk: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | CCLIENT_SERIAL_SRCS_cpp = \ 18 | SerialDataInputStream.cpp \ 19 | SerialDataOutputStream.cpp \ 20 | SerialHandleManager.cpp \ 21 | Serialize.cpp 22 | 23 | CCLIENT_SERIAL_SRCS_c = 24 | 25 | CCLIENT_SERIAL_OBJS = $(basename $(CCLIENT_SERIAL_SRCS_cpp) \ 26 | $(CCLIENT_SERIAL_SRCS_c)) 27 | -------------------------------------------------------------------------------- /mq/src/share/lib/images/admin/GNUmakefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2003, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | PACKAGE = 18 | TOPDIR = ../../../../.. 19 | MAKEDEFS = $(TOPDIR)/src/buildcfg/Defs.gmk 20 | SUBDIRS = 21 | 22 | include $(MAKEDEFS) 23 | 24 | # 25 | # copies the images files to binary/share/opt|debug/lib/image 26 | # 27 | all optimized: images.copy 28 | debug: images.debug 29 | clean: images.clean 30 | -------------------------------------------------------------------------------- /mq/src/solaris/etc/GNUmakefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2003, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | TOPDIR = ../../.. 18 | MAKEDEFS = $(TOPDIR)/src/buildcfg/Defs.gmk 19 | PACKAGE = etc 20 | 21 | ETCFILES.list = imq.sh 22 | ETC_CONFIG_FILE = imqbrokerd.conf 23 | ENV_CONF_FILE = imqenv.conf 24 | 25 | include $(MAKEDEFS) 26 | 27 | 28 | all optimized : etcfiles 29 | 30 | debug: etcfiles.debug 31 | 32 | clean: etcfiles.clean 33 | 34 | -------------------------------------------------------------------------------- /mq/main/mq-broker/mq-cluster/src/main/java/com/sun/messaging/jmq/jmsserver/multibroker/CallbackEvent.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2022 Contributors to the Eclipse Foundation 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0, which is available at 6 | * http://www.eclipse.org/legal/epl-2.0. 7 | * 8 | * This Source Code may also be made available under the following Secondary 9 | * Licenses when the conditions for such availability set forth in the 10 | * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | * version 2 with the GNU Classpath Exception, which is available at 12 | * https://www.gnu.org/software/classpath/license.html. 13 | * 14 | * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | */ 16 | 17 | package com.sun.messaging.jmq.jmsserver.multibroker; 18 | 19 | abstract class CallbackEvent { 20 | public abstract void dispatch(MessageBusCallback cb); 21 | 22 | public CallbackEventListener getEventListener() { 23 | return null; 24 | } 25 | } 26 | 27 | -------------------------------------------------------------------------------- /mq/src/share/install/install/templates/zip/Splash_pt_BR.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | SPLASH_HEADER=Abrir o Message Queue 4.5 18 | SPLASH_SUB_HEADER= 19 | SPLASH_FOOTER=Visite oracle.com 20 | SPLASH_SUB_FOOTER=Copyright (c) 2010, 2017 Oracle e/ou suas empresas afiliadas. Todos os direitos reservados e de titularidade da Oracle Corporation. Proibida a reprodu\u00e7\u00e3o total ou parcial. 21 | -------------------------------------------------------------------------------- /mq/src/share/java/visualvm/src/com/sun/messaging/visualvm/datasource/MQPluginException.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2010, 2017 Oracle and/or its affiliates. All rights reserved. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0, which is available at 6 | * http://www.eclipse.org/legal/epl-2.0. 7 | * 8 | * This Source Code may also be made available under the following Secondary 9 | * Licenses when the conditions for such availability set forth in the 10 | * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | * version 2 with the GNU Classpath Exception, which is available at 12 | * https://www.gnu.org/software/classpath/license.html. 13 | * 14 | * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | */ 16 | 17 | package com.sun.messaging.visualvm.datasource; 18 | 19 | public class MQPluginException extends Exception { 20 | 21 | private static final long serialVersionUID = 1L; 22 | 23 | public MQPluginException(String string) { 24 | super(string); 25 | } 26 | 27 | } 28 | -------------------------------------------------------------------------------- /mq/src/share/java/examples/jms/sample.dtd: -------------------------------------------------------------------------------- 1 | 2 | 13 | 14 | 17 | 18 | 19 | 24 | 25 | 28 | 29 | 30 | 31 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /mq/main/jmsra/mqjmsra-api/src/main/java/com/sun/messaging/jms/ra/api/JMSRAOnMessageRunner.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | * Copyright (c) 2021 Contributors to the Eclipse Foundation 4 | * 5 | * This program and the accompanying materials are made available under the 6 | * terms of the Eclipse Public License v. 2.0, which is available at 7 | * http://www.eclipse.org/legal/epl-2.0. 8 | * 9 | * This Source Code may also be made available under the following Secondary 10 | * Licenses when the conditions for such availability set forth in the 11 | * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 12 | * version 2 with the GNU Classpath Exception, which is available at 13 | * https://www.gnu.org/software/classpath/license.html. 14 | * 15 | * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 16 | */ 17 | 18 | package com.sun.messaging.jms.ra.api; 19 | 20 | /** 21 | */ 22 | public interface JMSRAOnMessageRunner { 23 | 24 | int getId(); 25 | 26 | JMSRAEndpointConsumer getEndpointConsumer(); 27 | 28 | } 29 | -------------------------------------------------------------------------------- /mq/main/mq-broker/mqpersist-file/exclude.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /mq/main/mq-broker/mqbroker-core/src/main/java/com/sun/messaging/jmq/jmsserver/pool/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 20 | 21 | 22 | Package Description for pool 23 | 24 | 25 | 26 | Provides classes and interfaces necessary to create a thread pool 27 |

28 | 29 | @since JMQ2.0-alpha 30 | 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /mq/main/mq-broker/mqbroker-core/src/main/java/com/sun/messaging/jmq/jmsserver/service/ConnectionClosedListener.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | * Copyright (c) 2021 Contributors to the Eclipse Foundation 4 | * 5 | * This program and the accompanying materials are made available under the 6 | * terms of the Eclipse Public License v. 2.0, which is available at 7 | * http://www.eclipse.org/legal/epl-2.0. 8 | * 9 | * This Source Code may also be made available under the following Secondary 10 | * Licenses when the conditions for such availability set forth in the 11 | * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 12 | * version 2 with the GNU Classpath Exception, which is available at 13 | * https://www.gnu.org/software/classpath/license.html. 14 | * 15 | * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 16 | */ 17 | 18 | /* 19 | */ 20 | 21 | package com.sun.messaging.jmq.jmsserver.service; 22 | 23 | public interface ConnectionClosedListener { 24 | 25 | void connectionClosed(Connection con); 26 | 27 | } 28 | -------------------------------------------------------------------------------- /mq/src/share/install/install/templates/Splash_pt_BR.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | SPLASH_HEADER=Oracle GlassFish(tm) Server Message Queue 5.1.1 18 | SPLASH_SUB_HEADER= 19 | SPLASH_FOOTER=Visite oracle.com 20 | SPLASH_SUB_FOOTER=Copyright (c) 2010, 2017 Oracle e/ou suas empresas afiliadas. Todos os direitos reservados e de titularidade da Oracle Corporation. Proibida a reprodu\u00e7\u00e3o total ou parcial. 21 | -------------------------------------------------------------------------------- /mq/main/mq-share/exclude.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /mq/src/share/cclient/client/protocol/protocol_srcs.mk: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | CCLIENT_CLIENT_PROTOCOL_SRCS_cpp = \ 18 | SSLProtocolHandler.cpp \ 19 | StubProtocolHandler.cpp \ 20 | TCPProtocolHandler.cpp 21 | 22 | CCLIENT_CLIENT_PROTOCOL_SRCS_c = 23 | 24 | CCLIENT_CLIENT_PROTOCOL_OBJS = $(basename $(CCLIENT_CLIENT_PROTOCOL_SRCS_cpp) \ 25 | $(CCLIENT_CLIENT_PROTOCOL_SRCS_c)) 26 | -------------------------------------------------------------------------------- /mq/main/mq-broker/mqbroker-core/src/main/java/com/sun/messaging/jmq/jmsserver/service/ServiceRestrictionListener.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | * Copyright (c) 2021 Contributors to the Eclipse Foundation 4 | * 5 | * This program and the accompanying materials are made available under the 6 | * terms of the Eclipse Public License v. 2.0, which is available at 7 | * http://www.eclipse.org/legal/epl-2.0. 8 | * 9 | * This Source Code may also be made available under the following Secondary 10 | * Licenses when the conditions for such availability set forth in the 11 | * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 12 | * version 2 with the GNU Classpath Exception, which is available at 13 | * https://www.gnu.org/software/classpath/license.html. 14 | * 15 | * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 16 | */ 17 | 18 | /* 19 | */ 20 | 21 | package com.sun.messaging.jmq.jmsserver.service; 22 | 23 | public interface ServiceRestrictionListener { 24 | 25 | void serviceRestrictionChanged(Service service); 26 | 27 | } 28 | -------------------------------------------------------------------------------- /mq/main/mq-admin/mqadmin-cli/exclude.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /mq/main/mq-broker/mqbroker-core/src/main/java/com/sun/messaging/jmq/jmsserver/persist/api/StoreSessionReaperListener.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | * Copyright (c) 2021 Contributors to the Eclipse Foundation 4 | * 5 | * This program and the accompanying materials are made available under the 6 | * terms of the Eclipse Public License v. 2.0, which is available at 7 | * http://www.eclipse.org/legal/epl-2.0. 8 | * 9 | * This Source Code may also be made available under the following Secondary 10 | * Licenses when the conditions for such availability set forth in the 11 | * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 12 | * version 2 with the GNU Classpath Exception, which is available at 13 | * https://www.gnu.org/software/classpath/license.html. 14 | * 15 | * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 16 | */ 17 | 18 | package com.sun.messaging.jmq.jmsserver.persist.api; 19 | 20 | /** 21 | */ 22 | public interface StoreSessionReaperListener { 23 | 24 | /** 25 | */ 26 | void runStoreSessionTask(); 27 | 28 | } 29 | -------------------------------------------------------------------------------- /mq/main/mq-client/src/main/java/com/sun/messaging/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 22 | 23 | 24 | 25 |

26 | Provides the Eclipse OpenMQ(tm) public classes. 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /mq/src/share/cclient/containers/containers_srcs.mk: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2010, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | CCLIENT_CONTAINERS_SRCS_cpp = \ 18 | BasicTypeHashtable.cpp \ 19 | ObjectVector.cpp \ 20 | Properties.cpp \ 21 | StringKeyHashtable.cpp \ 22 | Vector.cpp 23 | 24 | CCLIENT_CONTAINERS_SRCS_c = 25 | 26 | CCLIENT_CONTAINERS_OBJS = $(basename $(CCLIENT_CONTAINERS_SRCS_cpp) \ 27 | $(CCLIENT_CONTAINERS_SRCS_c)) 28 | -------------------------------------------------------------------------------- /mq/src/share/cclient/cshim/shimTest.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | * 4 | * This program and the accompanying materials are made available under the 5 | * terms of the Eclipse Public License v. 2.0, which is available at 6 | * http://www.eclipse.org/legal/epl-2.0. 7 | * 8 | * This Source Code may also be made available under the following Secondary 9 | * Licenses when the conditions for such availability set forth in the 10 | * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | * version 2 with the GNU Classpath Exception, which is available at 12 | * https://www.gnu.org/software/classpath/license.html. 13 | * 14 | * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | */ 16 | 17 | /* 18 | * @(#)shimTest.h 1.4 06/26/07 19 | */ 20 | 21 | #ifndef SHIM_TEST_H 22 | #define SHIM_TEST_H 23 | 24 | #ifdef __cplusplus 25 | extern "C" { 26 | #endif /* __cplusplus */ 27 | 28 | 29 | #include "mqcrt.h" 30 | iMQStatus shimTest(); 31 | 32 | 33 | #ifdef __cplusplus 34 | } 35 | #endif /* __cplusplus */ 36 | 37 | #endif /* IMQ_PROPERTIES_SHIM_H */ 38 | -------------------------------------------------------------------------------- /mq/src/share/props/broker/install.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | # 4 | # This program and the accompanying materials are made available under the 5 | # terms of the Eclipse Public License v. 2.0, which is available at 6 | # http://www.eclipse.org/legal/epl-2.0. 7 | # 8 | # This Source Code may also be made available under the following Secondary 9 | # Licenses when the conditions for such availability set forth in the 10 | # Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 11 | # version 2 with the GNU Classpath Exception, which is available at 12 | # https://www.gnu.org/software/classpath/license.html. 13 | # 14 | # SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 15 | # 16 | 17 | # 18 | # WARNING: this file should not be edited by hand. Any changes 19 | # made to this file will be lost if MQ is un-installed or 20 | # upgraded. 21 | # 22 | # This file contains the setting of any properties modified during 23 | # installation. 24 | # 25 | # Any properties changed at installation will be lost when the 26 | # product is installed or upgraded 27 | # 28 | -------------------------------------------------------------------------------- /mq/main/bridge/mqbridge-api/src/main/java/com/sun/messaging/bridge/api/StompDestination.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | * Copyright (c) 2021 Contributors to the Eclipse Foundation 4 | * 5 | * This program and the accompanying materials are made available under the 6 | * terms of the Eclipse Public License v. 2.0, which is available at 7 | * http://www.eclipse.org/legal/epl-2.0. 8 | * 9 | * This Source Code may also be made available under the following Secondary 10 | * Licenses when the conditions for such availability set forth in the 11 | * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 12 | * version 2 with the GNU Classpath Exception, which is available at 13 | * https://www.gnu.org/software/classpath/license.html. 14 | * 15 | * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 16 | */ 17 | 18 | package com.sun.messaging.bridge.api; 19 | 20 | /** 21 | * @author amyk 22 | */ 23 | public interface StompDestination { 24 | 25 | boolean isQueue(); 26 | 27 | boolean isTemporary(); 28 | 29 | String getName() throws Exception; 30 | } 31 | -------------------------------------------------------------------------------- /mq/main/mq-client/src/main/java/com/sun/messaging/jmq/jmsspi/JMSConstants.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | * Copyright (c) 2021 Contributors to the Eclipse Foundation 4 | * 5 | * This program and the accompanying materials are made available under the 6 | * terms of the Eclipse Public License v. 2.0, which is available at 7 | * http://www.eclipse.org/legal/epl-2.0. 8 | * 9 | * This Source Code may also be made available under the following Secondary 10 | * Licenses when the conditions for such availability set forth in the 11 | * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 12 | * version 2 with the GNU Classpath Exception, which is available at 13 | * https://www.gnu.org/software/classpath/license.html. 14 | * 15 | * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 16 | */ 17 | 18 | package com.sun.messaging.jmq.jmsspi; 19 | 20 | public interface JMSConstants { 21 | int UNKNOWN = -1; 22 | int QUEUE = 0; 23 | int TOPIC = 1; 24 | 25 | /** 26 | * Return both QUEUE and TOPIC destinations. 27 | */ 28 | int ALL = 2; 29 | 30 | } 31 | -------------------------------------------------------------------------------- /mq/main/bridge/mqbridge-api/src/main/java/com/sun/messaging/bridge/api/StompFrameMessageFactory.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2000, 2017 Oracle and/or its affiliates. All rights reserved. 3 | * Copyright (c) 2021 Contributors to the Eclipse Foundation 4 | * 5 | * This program and the accompanying materials are made available under the 6 | * terms of the Eclipse Public License v. 2.0, which is available at 7 | * http://www.eclipse.org/legal/epl-2.0. 8 | * 9 | * This Source Code may also be made available under the following Secondary 10 | * Licenses when the conditions for such availability set forth in the 11 | * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, 12 | * version 2 with the GNU Classpath Exception, which is available at 13 | * https://www.gnu.org/software/classpath/license.html. 14 | * 15 | * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 16 | */ 17 | 18 | package com.sun.messaging.bridge.api; 19 | 20 | import com.sun.messaging.jmq.util.LoggerWrapper; 21 | 22 | public interface StompFrameMessageFactory { 23 | 24 | StompFrameMessage newStompFrameMessage(StompFrameMessage.Command cmd, LoggerWrapper logger); 25 | } 26 | --------------------------------------------------------------------------------