diff --git a/fine-ehcache/src/javax/jms/BytesMessage.java b/fine-ehcache/src/javax/jms/BytesMessage.java new file mode 100644 index 000000000..872caccb8 --- /dev/null +++ b/fine-ehcache/src/javax/jms/BytesMessage.java @@ -0,0 +1,92 @@ +package javax.jms; + +public abstract interface BytesMessage + extends Message +{ + public abstract long getBodyLength() + throws JMSException; + + public abstract boolean readBoolean() + throws JMSException; + + public abstract byte readByte() + throws JMSException; + + public abstract int readUnsignedByte() + throws JMSException; + + public abstract short readShort() + throws JMSException; + + public abstract int readUnsignedShort() + throws JMSException; + + public abstract char readChar() + throws JMSException; + + public abstract int readInt() + throws JMSException; + + public abstract long readLong() + throws JMSException; + + public abstract float readFloat() + throws JMSException; + + public abstract double readDouble() + throws JMSException; + + public abstract String readUTF() + throws JMSException; + + public abstract int readBytes(byte[] paramArrayOfByte) + throws JMSException; + + public abstract int readBytes(byte[] paramArrayOfByte, int paramInt) + throws JMSException; + + public abstract void writeBoolean(boolean paramBoolean) + throws JMSException; + + public abstract void writeByte(byte paramByte) + throws JMSException; + + public abstract void writeShort(short paramShort) + throws JMSException; + + public abstract void writeChar(char paramChar) + throws JMSException; + + public abstract void writeInt(int paramInt) + throws JMSException; + + public abstract void writeLong(long paramLong) + throws JMSException; + + public abstract void writeFloat(float paramFloat) + throws JMSException; + + public abstract void writeDouble(double paramDouble) + throws JMSException; + + public abstract void writeUTF(String paramString) + throws JMSException; + + public abstract void writeBytes(byte[] paramArrayOfByte) + throws JMSException; + + public abstract void writeBytes(byte[] paramArrayOfByte, int paramInt1, int paramInt2) + throws JMSException; + + public abstract void writeObject(Object paramObject) + throws JMSException; + + public abstract void reset() + throws JMSException; +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\BytesMessage.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/Connection.java b/fine-ehcache/src/javax/jms/Connection.java new file mode 100644 index 000000000..04c0e0ed2 --- /dev/null +++ b/fine-ehcache/src/javax/jms/Connection.java @@ -0,0 +1,43 @@ +package javax.jms; + +public abstract interface Connection +{ + public abstract Session createSession(boolean paramBoolean, int paramInt) + throws JMSException; + + public abstract String getClientID() + throws JMSException; + + public abstract void setClientID(String paramString) + throws JMSException; + + public abstract ConnectionMetaData getMetaData() + throws JMSException; + + public abstract ExceptionListener getExceptionListener() + throws JMSException; + + public abstract void setExceptionListener(ExceptionListener paramExceptionListener) + throws JMSException; + + public abstract void start() + throws JMSException; + + public abstract void stop() + throws JMSException; + + public abstract void close() + throws JMSException; + + public abstract ConnectionConsumer createConnectionConsumer(Destination paramDestination, String paramString, ServerSessionPool paramServerSessionPool, int paramInt) + throws JMSException; + + public abstract ConnectionConsumer createDurableConnectionConsumer(Topic paramTopic, String paramString1, String paramString2, ServerSessionPool paramServerSessionPool, int paramInt) + throws JMSException; +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\Connection.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/ConnectionConsumer.java b/fine-ehcache/src/javax/jms/ConnectionConsumer.java new file mode 100644 index 000000000..fe8e844bf --- /dev/null +++ b/fine-ehcache/src/javax/jms/ConnectionConsumer.java @@ -0,0 +1,16 @@ +package javax.jms; + +public abstract interface ConnectionConsumer +{ + public abstract ServerSessionPool getServerSessionPool() + throws JMSException; + + public abstract void close() + throws JMSException; +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\ConnectionConsumer.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/ConnectionFactory.java b/fine-ehcache/src/javax/jms/ConnectionFactory.java new file mode 100644 index 000000000..63a8390e8 --- /dev/null +++ b/fine-ehcache/src/javax/jms/ConnectionFactory.java @@ -0,0 +1,16 @@ +package javax.jms; + +public abstract interface ConnectionFactory +{ + public abstract Connection createConnection() + throws JMSException; + + public abstract Connection createConnection(String paramString1, String paramString2) + throws JMSException; +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\ConnectionFactory.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/ConnectionMetaData.java b/fine-ehcache/src/javax/jms/ConnectionMetaData.java new file mode 100644 index 000000000..f35c7990d --- /dev/null +++ b/fine-ehcache/src/javax/jms/ConnectionMetaData.java @@ -0,0 +1,36 @@ +package javax.jms; + +import java.util.Enumeration; + +public abstract interface ConnectionMetaData +{ + public abstract String getJMSVersion() + throws JMSException; + + public abstract int getJMSMajorVersion() + throws JMSException; + + public abstract int getJMSMinorVersion() + throws JMSException; + + public abstract String getJMSProviderName() + throws JMSException; + + public abstract String getProviderVersion() + throws JMSException; + + public abstract int getProviderMajorVersion() + throws JMSException; + + public abstract int getProviderMinorVersion() + throws JMSException; + + public abstract Enumeration getJMSXPropertyNames() + throws JMSException; +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\ConnectionMetaData.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/DeliveryMode.java b/fine-ehcache/src/javax/jms/DeliveryMode.java new file mode 100644 index 000000000..6fd31f7d2 --- /dev/null +++ b/fine-ehcache/src/javax/jms/DeliveryMode.java @@ -0,0 +1,13 @@ +package javax.jms; + +public abstract interface DeliveryMode +{ + public static final int NON_PERSISTENT = 1; + public static final int PERSISTENT = 2; +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\DeliveryMode.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/Destination.java b/fine-ehcache/src/javax/jms/Destination.java new file mode 100644 index 000000000..c65219fd9 --- /dev/null +++ b/fine-ehcache/src/javax/jms/Destination.java @@ -0,0 +1,9 @@ +package javax.jms; + +public abstract interface Destination {} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\Destination.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/ExceptionListener.java b/fine-ehcache/src/javax/jms/ExceptionListener.java new file mode 100644 index 000000000..d21139933 --- /dev/null +++ b/fine-ehcache/src/javax/jms/ExceptionListener.java @@ -0,0 +1,12 @@ +package javax.jms; + +public abstract interface ExceptionListener +{ + public abstract void onException(JMSException paramJMSException); +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\ExceptionListener.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/IllegalStateException.java b/fine-ehcache/src/javax/jms/IllegalStateException.java new file mode 100644 index 000000000..6f73b2db9 --- /dev/null +++ b/fine-ehcache/src/javax/jms/IllegalStateException.java @@ -0,0 +1,53 @@ +/* */ package javax.jms; +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ public class IllegalStateException +/* */ extends JMSException +/* */ { +/* */ public IllegalStateException(String reason, String errorCode) +/* */ { +/* 35 */ super(reason, errorCode); +/* */ } +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ public IllegalStateException(String reason) +/* */ { +/* 45 */ super(reason); +/* */ } +/* */ } + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\IllegalStateException.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/InvalidClientIDException.java b/fine-ehcache/src/javax/jms/InvalidClientIDException.java new file mode 100644 index 000000000..a39759379 --- /dev/null +++ b/fine-ehcache/src/javax/jms/InvalidClientIDException.java @@ -0,0 +1,78 @@ +/* */ package javax.jms; +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ public class InvalidClientIDException +/* */ extends JMSException +/* */ { +/* */ public InvalidClientIDException(String reason, String errorCode) +/* */ { +/* 60 */ super(reason, errorCode); +/* */ } +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ public InvalidClientIDException(String reason) +/* */ { +/* 70 */ super(reason); +/* */ } +/* */ } + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\InvalidClientIDException.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/InvalidDestinationException.java b/fine-ehcache/src/javax/jms/InvalidDestinationException.java new file mode 100644 index 000000000..28b56388b --- /dev/null +++ b/fine-ehcache/src/javax/jms/InvalidDestinationException.java @@ -0,0 +1,79 @@ +/* */ package javax.jms; +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ public class InvalidDestinationException +/* */ extends JMSException +/* */ { +/* */ public InvalidDestinationException(String reason, String errorCode) +/* */ { +/* 61 */ super(reason, errorCode); +/* */ } +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ public InvalidDestinationException(String reason) +/* */ { +/* 71 */ super(reason); +/* */ } +/* */ } + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\InvalidDestinationException.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/InvalidSelectorException.java b/fine-ehcache/src/javax/jms/InvalidSelectorException.java new file mode 100644 index 000000000..4fe64beef --- /dev/null +++ b/fine-ehcache/src/javax/jms/InvalidSelectorException.java @@ -0,0 +1,79 @@ +/* */ package javax.jms; +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ public class InvalidSelectorException +/* */ extends JMSException +/* */ { +/* */ public InvalidSelectorException(String reason, String errorCode) +/* */ { +/* 61 */ super(reason, errorCode); +/* */ } +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ public InvalidSelectorException(String reason) +/* */ { +/* 71 */ super(reason); +/* */ } +/* */ } + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\InvalidSelectorException.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/JMSException.java b/fine-ehcache/src/javax/jms/JMSException.java new file mode 100644 index 000000000..2b64952e2 --- /dev/null +++ b/fine-ehcache/src/javax/jms/JMSException.java @@ -0,0 +1,129 @@ +/* */ package javax.jms; +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ public class JMSException +/* */ extends Exception +/* */ { +/* */ private String errorCode; +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ private Exception linkedException; +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ public JMSException(String reason, String errorCode) +/* */ { +/* 78 */ super(reason); +/* 79 */ this.errorCode = errorCode; +/* 80 */ this.linkedException = null; +/* */ } +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ public JMSException(String reason) +/* */ { +/* 90 */ super(reason); +/* 91 */ this.errorCode = null; +/* 92 */ this.linkedException = null; +/* */ } +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ public String getErrorCode() +/* */ { +/* 101 */ return this.errorCode; +/* */ } +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ public Exception getLinkedException() +/* */ { +/* 111 */ return this.linkedException; +/* */ } +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ public synchronized void setLinkedException(Exception ex) +/* */ { +/* 121 */ this.linkedException = ex; +/* */ } +/* */ } + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\JMSException.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/JMSSecurityException.java b/fine-ehcache/src/javax/jms/JMSSecurityException.java new file mode 100644 index 000000000..33c03b236 --- /dev/null +++ b/fine-ehcache/src/javax/jms/JMSSecurityException.java @@ -0,0 +1,79 @@ +/* */ package javax.jms; +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ public class JMSSecurityException +/* */ extends JMSException +/* */ { +/* */ public JMSSecurityException(String reason, String errorCode) +/* */ { +/* 61 */ super(reason, errorCode); +/* */ } +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ public JMSSecurityException(String reason) +/* */ { +/* 71 */ super(reason); +/* */ } +/* */ } + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\JMSSecurityException.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/MapMessage.java b/fine-ehcache/src/javax/jms/MapMessage.java new file mode 100644 index 000000000..50ef0af7c --- /dev/null +++ b/fine-ehcache/src/javax/jms/MapMessage.java @@ -0,0 +1,88 @@ +package javax.jms; + +import java.util.Enumeration; + +public abstract interface MapMessage + extends Message +{ + public abstract boolean getBoolean(String paramString) + throws JMSException; + + public abstract byte getByte(String paramString) + throws JMSException; + + public abstract short getShort(String paramString) + throws JMSException; + + public abstract char getChar(String paramString) + throws JMSException; + + public abstract int getInt(String paramString) + throws JMSException; + + public abstract long getLong(String paramString) + throws JMSException; + + public abstract float getFloat(String paramString) + throws JMSException; + + public abstract double getDouble(String paramString) + throws JMSException; + + public abstract String getString(String paramString) + throws JMSException; + + public abstract byte[] getBytes(String paramString) + throws JMSException; + + public abstract Object getObject(String paramString) + throws JMSException; + + public abstract Enumeration getMapNames() + throws JMSException; + + public abstract void setBoolean(String paramString, boolean paramBoolean) + throws JMSException; + + public abstract void setByte(String paramString, byte paramByte) + throws JMSException; + + public abstract void setShort(String paramString, short paramShort) + throws JMSException; + + public abstract void setChar(String paramString, char paramChar) + throws JMSException; + + public abstract void setInt(String paramString, int paramInt) + throws JMSException; + + public abstract void setLong(String paramString, long paramLong) + throws JMSException; + + public abstract void setFloat(String paramString, float paramFloat) + throws JMSException; + + public abstract void setDouble(String paramString, double paramDouble) + throws JMSException; + + public abstract void setString(String paramString1, String paramString2) + throws JMSException; + + public abstract void setBytes(String paramString, byte[] paramArrayOfByte) + throws JMSException; + + public abstract void setBytes(String paramString, byte[] paramArrayOfByte, int paramInt1, int paramInt2) + throws JMSException; + + public abstract void setObject(String paramString, Object paramObject) + throws JMSException; + + public abstract boolean itemExists(String paramString) + throws JMSException; +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\MapMessage.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/Message.java b/fine-ehcache/src/javax/jms/Message.java new file mode 100644 index 000000000..567bbd3e0 --- /dev/null +++ b/fine-ehcache/src/javax/jms/Message.java @@ -0,0 +1,151 @@ +package javax.jms; + +import java.util.Enumeration; + +public abstract interface Message +{ + public static final int DEFAULT_DELIVERY_MODE = 2; + public static final int DEFAULT_PRIORITY = 4; + public static final long DEFAULT_TIME_TO_LIVE = 0L; + + public abstract String getJMSMessageID() + throws JMSException; + + public abstract void setJMSMessageID(String paramString) + throws JMSException; + + public abstract long getJMSTimestamp() + throws JMSException; + + public abstract void setJMSTimestamp(long paramLong) + throws JMSException; + + public abstract byte[] getJMSCorrelationIDAsBytes() + throws JMSException; + + public abstract void setJMSCorrelationIDAsBytes(byte[] paramArrayOfByte) + throws JMSException; + + public abstract void setJMSCorrelationID(String paramString) + throws JMSException; + + public abstract String getJMSCorrelationID() + throws JMSException; + + public abstract Destination getJMSReplyTo() + throws JMSException; + + public abstract void setJMSReplyTo(Destination paramDestination) + throws JMSException; + + public abstract Destination getJMSDestination() + throws JMSException; + + public abstract void setJMSDestination(Destination paramDestination) + throws JMSException; + + public abstract int getJMSDeliveryMode() + throws JMSException; + + public abstract void setJMSDeliveryMode(int paramInt) + throws JMSException; + + public abstract boolean getJMSRedelivered() + throws JMSException; + + public abstract void setJMSRedelivered(boolean paramBoolean) + throws JMSException; + + public abstract String getJMSType() + throws JMSException; + + public abstract void setJMSType(String paramString) + throws JMSException; + + public abstract long getJMSExpiration() + throws JMSException; + + public abstract void setJMSExpiration(long paramLong) + throws JMSException; + + public abstract int getJMSPriority() + throws JMSException; + + public abstract void setJMSPriority(int paramInt) + throws JMSException; + + public abstract void clearProperties() + throws JMSException; + + public abstract boolean propertyExists(String paramString) + throws JMSException; + + public abstract boolean getBooleanProperty(String paramString) + throws JMSException; + + public abstract byte getByteProperty(String paramString) + throws JMSException; + + public abstract short getShortProperty(String paramString) + throws JMSException; + + public abstract int getIntProperty(String paramString) + throws JMSException; + + public abstract long getLongProperty(String paramString) + throws JMSException; + + public abstract float getFloatProperty(String paramString) + throws JMSException; + + public abstract double getDoubleProperty(String paramString) + throws JMSException; + + public abstract String getStringProperty(String paramString) + throws JMSException; + + public abstract Object getObjectProperty(String paramString) + throws JMSException; + + public abstract Enumeration getPropertyNames() + throws JMSException; + + public abstract void setBooleanProperty(String paramString, boolean paramBoolean) + throws JMSException; + + public abstract void setByteProperty(String paramString, byte paramByte) + throws JMSException; + + public abstract void setShortProperty(String paramString, short paramShort) + throws JMSException; + + public abstract void setIntProperty(String paramString, int paramInt) + throws JMSException; + + public abstract void setLongProperty(String paramString, long paramLong) + throws JMSException; + + public abstract void setFloatProperty(String paramString, float paramFloat) + throws JMSException; + + public abstract void setDoubleProperty(String paramString, double paramDouble) + throws JMSException; + + public abstract void setStringProperty(String paramString1, String paramString2) + throws JMSException; + + public abstract void setObjectProperty(String paramString, Object paramObject) + throws JMSException; + + public abstract void acknowledge() + throws JMSException; + + public abstract void clearBody() + throws JMSException; +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\Message.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/MessageConsumer.java b/fine-ehcache/src/javax/jms/MessageConsumer.java new file mode 100644 index 000000000..c6f68a19e --- /dev/null +++ b/fine-ehcache/src/javax/jms/MessageConsumer.java @@ -0,0 +1,31 @@ +package javax.jms; + +public abstract interface MessageConsumer +{ + public abstract String getMessageSelector() + throws JMSException; + + public abstract MessageListener getMessageListener() + throws JMSException; + + public abstract void setMessageListener(MessageListener paramMessageListener) + throws JMSException; + + public abstract Message receive() + throws JMSException; + + public abstract Message receive(long paramLong) + throws JMSException; + + public abstract Message receiveNoWait() + throws JMSException; + + public abstract void close() + throws JMSException; +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\MessageConsumer.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/MessageEOFException.java b/fine-ehcache/src/javax/jms/MessageEOFException.java new file mode 100644 index 000000000..c9c8b21a1 --- /dev/null +++ b/fine-ehcache/src/javax/jms/MessageEOFException.java @@ -0,0 +1,79 @@ +/* */ package javax.jms; +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ public class MessageEOFException +/* */ extends JMSException +/* */ { +/* */ public MessageEOFException(String reason, String errorCode) +/* */ { +/* 61 */ super(reason, errorCode); +/* */ } +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ public MessageEOFException(String reason) +/* */ { +/* 71 */ super(reason); +/* */ } +/* */ } + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\MessageEOFException.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/MessageFormatException.java b/fine-ehcache/src/javax/jms/MessageFormatException.java new file mode 100644 index 000000000..389706f7d --- /dev/null +++ b/fine-ehcache/src/javax/jms/MessageFormatException.java @@ -0,0 +1,87 @@ +/* */ package javax.jms; +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ public class MessageFormatException +/* */ extends JMSException +/* */ { +/* */ public MessageFormatException(String reason, String errorCode) +/* */ { +/* 69 */ super(reason, errorCode); +/* */ } +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ public MessageFormatException(String reason) +/* */ { +/* 79 */ super(reason); +/* */ } +/* */ } + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\MessageFormatException.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/MessageListener.java b/fine-ehcache/src/javax/jms/MessageListener.java new file mode 100644 index 000000000..bd6fc05fa --- /dev/null +++ b/fine-ehcache/src/javax/jms/MessageListener.java @@ -0,0 +1,12 @@ +package javax.jms; + +public abstract interface MessageListener +{ + public abstract void onMessage(Message paramMessage); +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\MessageListener.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/MessageNotReadableException.java b/fine-ehcache/src/javax/jms/MessageNotReadableException.java new file mode 100644 index 000000000..0d281281b --- /dev/null +++ b/fine-ehcache/src/javax/jms/MessageNotReadableException.java @@ -0,0 +1,78 @@ +/* */ package javax.jms; +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ public class MessageNotReadableException +/* */ extends JMSException +/* */ { +/* */ public MessageNotReadableException(String reason, String errorCode) +/* */ { +/* 60 */ super(reason, errorCode); +/* */ } +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ public MessageNotReadableException(String reason) +/* */ { +/* 70 */ super(reason); +/* */ } +/* */ } + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\MessageNotReadableException.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/MessageNotWriteableException.java b/fine-ehcache/src/javax/jms/MessageNotWriteableException.java new file mode 100644 index 000000000..e1d848937 --- /dev/null +++ b/fine-ehcache/src/javax/jms/MessageNotWriteableException.java @@ -0,0 +1,78 @@ +/* */ package javax.jms; +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ public class MessageNotWriteableException +/* */ extends JMSException +/* */ { +/* */ public MessageNotWriteableException(String reason, String errorCode) +/* */ { +/* 60 */ super(reason, errorCode); +/* */ } +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ public MessageNotWriteableException(String reason) +/* */ { +/* 70 */ super(reason); +/* */ } +/* */ } + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\MessageNotWriteableException.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/MessageProducer.java b/fine-ehcache/src/javax/jms/MessageProducer.java new file mode 100644 index 000000000..24ed1b9e1 --- /dev/null +++ b/fine-ehcache/src/javax/jms/MessageProducer.java @@ -0,0 +1,58 @@ +package javax.jms; + +public abstract interface MessageProducer +{ + public abstract void setDisableMessageID(boolean paramBoolean) + throws JMSException; + + public abstract boolean getDisableMessageID() + throws JMSException; + + public abstract void setDisableMessageTimestamp(boolean paramBoolean) + throws JMSException; + + public abstract boolean getDisableMessageTimestamp() + throws JMSException; + + public abstract void setDeliveryMode(int paramInt) + throws JMSException; + + public abstract int getDeliveryMode() + throws JMSException; + + public abstract void setPriority(int paramInt) + throws JMSException; + + public abstract int getPriority() + throws JMSException; + + public abstract void setTimeToLive(long paramLong) + throws JMSException; + + public abstract long getTimeToLive() + throws JMSException; + + public abstract Destination getDestination() + throws JMSException; + + public abstract void close() + throws JMSException; + + public abstract void send(Message paramMessage) + throws JMSException; + + public abstract void send(Message paramMessage, int paramInt1, int paramInt2, long paramLong) + throws JMSException; + + public abstract void send(Destination paramDestination, Message paramMessage) + throws JMSException; + + public abstract void send(Destination paramDestination, Message paramMessage, int paramInt1, int paramInt2, long paramLong) + throws JMSException; +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\MessageProducer.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/ObjectMessage.java b/fine-ehcache/src/javax/jms/ObjectMessage.java new file mode 100644 index 000000000..73209b3bc --- /dev/null +++ b/fine-ehcache/src/javax/jms/ObjectMessage.java @@ -0,0 +1,19 @@ +package javax.jms; + +import java.io.Serializable; + +public abstract interface ObjectMessage + extends Message +{ + public abstract void setObject(Serializable paramSerializable) + throws JMSException; + + public abstract Serializable getObject() + throws JMSException; +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\ObjectMessage.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/Queue.java b/fine-ehcache/src/javax/jms/Queue.java new file mode 100644 index 000000000..e5473b90d --- /dev/null +++ b/fine-ehcache/src/javax/jms/Queue.java @@ -0,0 +1,16 @@ +package javax.jms; + +public abstract interface Queue + extends Destination +{ + public abstract String getQueueName() + throws JMSException; + + public abstract String toString(); +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\Queue.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/QueueBrowser.java b/fine-ehcache/src/javax/jms/QueueBrowser.java new file mode 100644 index 000000000..ab3eb92ea --- /dev/null +++ b/fine-ehcache/src/javax/jms/QueueBrowser.java @@ -0,0 +1,24 @@ +package javax.jms; + +import java.util.Enumeration; + +public abstract interface QueueBrowser +{ + public abstract Queue getQueue() + throws JMSException; + + public abstract String getMessageSelector() + throws JMSException; + + public abstract Enumeration getEnumeration() + throws JMSException; + + public abstract void close() + throws JMSException; +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\QueueBrowser.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/QueueConnection.java b/fine-ehcache/src/javax/jms/QueueConnection.java new file mode 100644 index 000000000..4b0e33455 --- /dev/null +++ b/fine-ehcache/src/javax/jms/QueueConnection.java @@ -0,0 +1,17 @@ +package javax.jms; + +public abstract interface QueueConnection + extends Connection +{ + public abstract QueueSession createQueueSession(boolean paramBoolean, int paramInt) + throws JMSException; + + public abstract ConnectionConsumer createConnectionConsumer(Queue paramQueue, String paramString, ServerSessionPool paramServerSessionPool, int paramInt) + throws JMSException; +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\QueueConnection.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/QueueConnectionFactory.java b/fine-ehcache/src/javax/jms/QueueConnectionFactory.java new file mode 100644 index 000000000..02e6ceed9 --- /dev/null +++ b/fine-ehcache/src/javax/jms/QueueConnectionFactory.java @@ -0,0 +1,17 @@ +package javax.jms; + +public abstract interface QueueConnectionFactory + extends ConnectionFactory +{ + public abstract QueueConnection createQueueConnection() + throws JMSException; + + public abstract QueueConnection createQueueConnection(String paramString1, String paramString2) + throws JMSException; +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\QueueConnectionFactory.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/QueueReceiver.java b/fine-ehcache/src/javax/jms/QueueReceiver.java new file mode 100644 index 000000000..a7bdbb027 --- /dev/null +++ b/fine-ehcache/src/javax/jms/QueueReceiver.java @@ -0,0 +1,14 @@ +package javax.jms; + +public abstract interface QueueReceiver + extends MessageConsumer +{ + public abstract Queue getQueue() + throws JMSException; +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\QueueReceiver.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/QueueRequestor.java b/fine-ehcache/src/javax/jms/QueueRequestor.java new file mode 100644 index 000000000..c3706bf36 --- /dev/null +++ b/fine-ehcache/src/javax/jms/QueueRequestor.java @@ -0,0 +1,143 @@ +/* */ package javax.jms; +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ public class QueueRequestor +/* */ { +/* */ QueueSession session; +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ Queue queue; +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ TemporaryQueue tempQueue; +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ QueueSender sender; +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ QueueReceiver receiver; +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ public QueueRequestor(QueueSession session, Queue queue) +/* */ throws JMSException +/* */ { +/* 86 */ this.session = session; +/* 87 */ this.queue = queue; +/* 88 */ this.tempQueue = session.createTemporaryQueue(); +/* 89 */ this.sender = session.createSender(queue); +/* 90 */ this.receiver = session.createReceiver(this.tempQueue); +/* */ } +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ public Message request(Message message) +/* */ throws JMSException +/* */ { +/* 108 */ message.setJMSReplyTo(this.tempQueue); +/* 109 */ this.sender.send(message); +/* 110 */ return this.receiver.receive(); +/* */ } +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ public void close() +/* */ throws JMSException +/* */ { +/* 134 */ this.session.close(); +/* 135 */ this.tempQueue.delete(); +/* */ } +/* */ } + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\QueueRequestor.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/QueueSender.java b/fine-ehcache/src/javax/jms/QueueSender.java new file mode 100644 index 000000000..850f76f1d --- /dev/null +++ b/fine-ehcache/src/javax/jms/QueueSender.java @@ -0,0 +1,26 @@ +package javax.jms; + +public abstract interface QueueSender + extends MessageProducer +{ + public abstract Queue getQueue() + throws JMSException; + + public abstract void send(Message paramMessage) + throws JMSException; + + public abstract void send(Message paramMessage, int paramInt1, int paramInt2, long paramLong) + throws JMSException; + + public abstract void send(Queue paramQueue, Message paramMessage) + throws JMSException; + + public abstract void send(Queue paramQueue, Message paramMessage, int paramInt1, int paramInt2, long paramLong) + throws JMSException; +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\QueueSender.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/QueueSession.java b/fine-ehcache/src/javax/jms/QueueSession.java new file mode 100644 index 000000000..0b9e616d7 --- /dev/null +++ b/fine-ehcache/src/javax/jms/QueueSession.java @@ -0,0 +1,32 @@ +package javax.jms; + +public abstract interface QueueSession + extends Session +{ + public abstract Queue createQueue(String paramString) + throws JMSException; + + public abstract QueueReceiver createReceiver(Queue paramQueue) + throws JMSException; + + public abstract QueueReceiver createReceiver(Queue paramQueue, String paramString) + throws JMSException; + + public abstract QueueSender createSender(Queue paramQueue) + throws JMSException; + + public abstract QueueBrowser createBrowser(Queue paramQueue) + throws JMSException; + + public abstract QueueBrowser createBrowser(Queue paramQueue, String paramString) + throws JMSException; + + public abstract TemporaryQueue createTemporaryQueue() + throws JMSException; +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\QueueSession.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/ResourceAllocationException.java b/fine-ehcache/src/javax/jms/ResourceAllocationException.java new file mode 100644 index 000000000..31c55a62b --- /dev/null +++ b/fine-ehcache/src/javax/jms/ResourceAllocationException.java @@ -0,0 +1,81 @@ +/* */ package javax.jms; +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ public class ResourceAllocationException +/* */ extends JMSException +/* */ { +/* */ public ResourceAllocationException(String reason, String errorCode) +/* */ { +/* 63 */ super(reason, errorCode); +/* */ } +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ public ResourceAllocationException(String reason) +/* */ { +/* 73 */ super(reason); +/* */ } +/* */ } + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\ResourceAllocationException.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/ServerSession.java b/fine-ehcache/src/javax/jms/ServerSession.java new file mode 100644 index 000000000..333f529b6 --- /dev/null +++ b/fine-ehcache/src/javax/jms/ServerSession.java @@ -0,0 +1,16 @@ +package javax.jms; + +public abstract interface ServerSession +{ + public abstract Session getSession() + throws JMSException; + + public abstract void start() + throws JMSException; +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\ServerSession.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/ServerSessionPool.java b/fine-ehcache/src/javax/jms/ServerSessionPool.java new file mode 100644 index 000000000..a90c23b6f --- /dev/null +++ b/fine-ehcache/src/javax/jms/ServerSessionPool.java @@ -0,0 +1,13 @@ +package javax.jms; + +public abstract interface ServerSessionPool +{ + public abstract ServerSession getServerSession() + throws JMSException; +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\ServerSessionPool.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/Session.java b/fine-ehcache/src/javax/jms/Session.java new file mode 100644 index 000000000..1d381e230 --- /dev/null +++ b/fine-ehcache/src/javax/jms/Session.java @@ -0,0 +1,107 @@ +package javax.jms; + +import java.io.Serializable; + +public abstract interface Session + extends Runnable +{ + public static final int AUTO_ACKNOWLEDGE = 1; + public static final int CLIENT_ACKNOWLEDGE = 2; + public static final int DUPS_OK_ACKNOWLEDGE = 3; + public static final int SESSION_TRANSACTED = 0; + + public abstract BytesMessage createBytesMessage() + throws JMSException; + + public abstract MapMessage createMapMessage() + throws JMSException; + + public abstract Message createMessage() + throws JMSException; + + public abstract ObjectMessage createObjectMessage() + throws JMSException; + + public abstract ObjectMessage createObjectMessage(Serializable paramSerializable) + throws JMSException; + + public abstract StreamMessage createStreamMessage() + throws JMSException; + + public abstract TextMessage createTextMessage() + throws JMSException; + + public abstract TextMessage createTextMessage(String paramString) + throws JMSException; + + public abstract boolean getTransacted() + throws JMSException; + + public abstract int getAcknowledgeMode() + throws JMSException; + + public abstract void commit() + throws JMSException; + + public abstract void rollback() + throws JMSException; + + public abstract void close() + throws JMSException; + + public abstract void recover() + throws JMSException; + + public abstract MessageListener getMessageListener() + throws JMSException; + + public abstract void setMessageListener(MessageListener paramMessageListener) + throws JMSException; + + public abstract void run(); + + public abstract MessageProducer createProducer(Destination paramDestination) + throws JMSException; + + public abstract MessageConsumer createConsumer(Destination paramDestination) + throws JMSException; + + public abstract MessageConsumer createConsumer(Destination paramDestination, String paramString) + throws JMSException; + + public abstract MessageConsumer createConsumer(Destination paramDestination, String paramString, boolean paramBoolean) + throws JMSException; + + public abstract Queue createQueue(String paramString) + throws JMSException; + + public abstract Topic createTopic(String paramString) + throws JMSException; + + public abstract TopicSubscriber createDurableSubscriber(Topic paramTopic, String paramString) + throws JMSException; + + public abstract TopicSubscriber createDurableSubscriber(Topic paramTopic, String paramString1, String paramString2, boolean paramBoolean) + throws JMSException; + + public abstract QueueBrowser createBrowser(Queue paramQueue) + throws JMSException; + + public abstract QueueBrowser createBrowser(Queue paramQueue, String paramString) + throws JMSException; + + public abstract TemporaryQueue createTemporaryQueue() + throws JMSException; + + public abstract TemporaryTopic createTemporaryTopic() + throws JMSException; + + public abstract void unsubscribe(String paramString) + throws JMSException; +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\Session.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/StreamMessage.java b/fine-ehcache/src/javax/jms/StreamMessage.java new file mode 100644 index 000000000..7cdc7d24c --- /dev/null +++ b/fine-ehcache/src/javax/jms/StreamMessage.java @@ -0,0 +1,83 @@ +package javax.jms; + +public abstract interface StreamMessage + extends Message +{ + public abstract boolean readBoolean() + throws JMSException; + + public abstract byte readByte() + throws JMSException; + + public abstract short readShort() + throws JMSException; + + public abstract char readChar() + throws JMSException; + + public abstract int readInt() + throws JMSException; + + public abstract long readLong() + throws JMSException; + + public abstract float readFloat() + throws JMSException; + + public abstract double readDouble() + throws JMSException; + + public abstract String readString() + throws JMSException; + + public abstract int readBytes(byte[] paramArrayOfByte) + throws JMSException; + + public abstract Object readObject() + throws JMSException; + + public abstract void writeBoolean(boolean paramBoolean) + throws JMSException; + + public abstract void writeByte(byte paramByte) + throws JMSException; + + public abstract void writeShort(short paramShort) + throws JMSException; + + public abstract void writeChar(char paramChar) + throws JMSException; + + public abstract void writeInt(int paramInt) + throws JMSException; + + public abstract void writeLong(long paramLong) + throws JMSException; + + public abstract void writeFloat(float paramFloat) + throws JMSException; + + public abstract void writeDouble(double paramDouble) + throws JMSException; + + public abstract void writeString(String paramString) + throws JMSException; + + public abstract void writeBytes(byte[] paramArrayOfByte) + throws JMSException; + + public abstract void writeBytes(byte[] paramArrayOfByte, int paramInt1, int paramInt2) + throws JMSException; + + public abstract void writeObject(Object paramObject) + throws JMSException; + + public abstract void reset() + throws JMSException; +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\StreamMessage.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/TemporaryQueue.java b/fine-ehcache/src/javax/jms/TemporaryQueue.java new file mode 100644 index 000000000..226624943 --- /dev/null +++ b/fine-ehcache/src/javax/jms/TemporaryQueue.java @@ -0,0 +1,14 @@ +package javax.jms; + +public abstract interface TemporaryQueue + extends Queue +{ + public abstract void delete() + throws JMSException; +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\TemporaryQueue.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/TemporaryTopic.java b/fine-ehcache/src/javax/jms/TemporaryTopic.java new file mode 100644 index 000000000..e162e13e9 --- /dev/null +++ b/fine-ehcache/src/javax/jms/TemporaryTopic.java @@ -0,0 +1,14 @@ +package javax.jms; + +public abstract interface TemporaryTopic + extends Topic +{ + public abstract void delete() + throws JMSException; +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\TemporaryTopic.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/TextMessage.java b/fine-ehcache/src/javax/jms/TextMessage.java new file mode 100644 index 000000000..50fbc1dc2 --- /dev/null +++ b/fine-ehcache/src/javax/jms/TextMessage.java @@ -0,0 +1,17 @@ +package javax.jms; + +public abstract interface TextMessage + extends Message +{ + public abstract void setText(String paramString) + throws JMSException; + + public abstract String getText() + throws JMSException; +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\TextMessage.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/Topic.java b/fine-ehcache/src/javax/jms/Topic.java new file mode 100644 index 000000000..10c0671ac --- /dev/null +++ b/fine-ehcache/src/javax/jms/Topic.java @@ -0,0 +1,16 @@ +package javax.jms; + +public abstract interface Topic + extends Destination +{ + public abstract String getTopicName() + throws JMSException; + + public abstract String toString(); +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\Topic.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/TopicConnection.java b/fine-ehcache/src/javax/jms/TopicConnection.java new file mode 100644 index 000000000..d06ec89f8 --- /dev/null +++ b/fine-ehcache/src/javax/jms/TopicConnection.java @@ -0,0 +1,20 @@ +package javax.jms; + +public abstract interface TopicConnection + extends Connection +{ + public abstract TopicSession createTopicSession(boolean paramBoolean, int paramInt) + throws JMSException; + + public abstract ConnectionConsumer createConnectionConsumer(Topic paramTopic, String paramString, ServerSessionPool paramServerSessionPool, int paramInt) + throws JMSException; + + public abstract ConnectionConsumer createDurableConnectionConsumer(Topic paramTopic, String paramString1, String paramString2, ServerSessionPool paramServerSessionPool, int paramInt) + throws JMSException; +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\TopicConnection.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/TopicConnectionFactory.java b/fine-ehcache/src/javax/jms/TopicConnectionFactory.java new file mode 100644 index 000000000..02c399ebf --- /dev/null +++ b/fine-ehcache/src/javax/jms/TopicConnectionFactory.java @@ -0,0 +1,17 @@ +package javax.jms; + +public abstract interface TopicConnectionFactory + extends ConnectionFactory +{ + public abstract TopicConnection createTopicConnection() + throws JMSException; + + public abstract TopicConnection createTopicConnection(String paramString1, String paramString2) + throws JMSException; +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\TopicConnectionFactory.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/TopicPublisher.java b/fine-ehcache/src/javax/jms/TopicPublisher.java new file mode 100644 index 000000000..c695b6577 --- /dev/null +++ b/fine-ehcache/src/javax/jms/TopicPublisher.java @@ -0,0 +1,26 @@ +package javax.jms; + +public abstract interface TopicPublisher + extends MessageProducer +{ + public abstract Topic getTopic() + throws JMSException; + + public abstract void publish(Message paramMessage) + throws JMSException; + + public abstract void publish(Message paramMessage, int paramInt1, int paramInt2, long paramLong) + throws JMSException; + + public abstract void publish(Topic paramTopic, Message paramMessage) + throws JMSException; + + public abstract void publish(Topic paramTopic, Message paramMessage, int paramInt1, int paramInt2, long paramLong) + throws JMSException; +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\TopicPublisher.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/TopicRequestor.java b/fine-ehcache/src/javax/jms/TopicRequestor.java new file mode 100644 index 000000000..fdda4bc7c --- /dev/null +++ b/fine-ehcache/src/javax/jms/TopicRequestor.java @@ -0,0 +1,142 @@ +/* */ package javax.jms; +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ public class TopicRequestor +/* */ { +/* */ TopicSession session; +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ Topic topic; +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ TemporaryTopic tempTopic; +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ TopicPublisher publisher; +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ TopicSubscriber subscriber; +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ public TopicRequestor(TopicSession session, Topic topic) +/* */ throws JMSException +/* */ { +/* 85 */ this.session = session; +/* 86 */ this.topic = topic; +/* 87 */ this.tempTopic = session.createTemporaryTopic(); +/* 88 */ this.publisher = session.createPublisher(topic); +/* 89 */ this.subscriber = session.createSubscriber(this.tempTopic); +/* */ } +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ public Message request(Message message) +/* */ throws JMSException +/* */ { +/* 107 */ message.setJMSReplyTo(this.tempTopic); +/* 108 */ this.publisher.publish(message); +/* 109 */ return this.subscriber.receive(); +/* */ } +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ public void close() +/* */ throws JMSException +/* */ { +/* 133 */ this.session.close(); +/* 134 */ this.tempTopic.delete(); +/* */ } +/* */ } + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\TopicRequestor.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/TopicSession.java b/fine-ehcache/src/javax/jms/TopicSession.java new file mode 100644 index 000000000..2c8a29c39 --- /dev/null +++ b/fine-ehcache/src/javax/jms/TopicSession.java @@ -0,0 +1,35 @@ +package javax.jms; + +public abstract interface TopicSession + extends Session +{ + public abstract Topic createTopic(String paramString) + throws JMSException; + + public abstract TopicSubscriber createSubscriber(Topic paramTopic) + throws JMSException; + + public abstract TopicSubscriber createSubscriber(Topic paramTopic, String paramString, boolean paramBoolean) + throws JMSException; + + public abstract TopicSubscriber createDurableSubscriber(Topic paramTopic, String paramString) + throws JMSException; + + public abstract TopicSubscriber createDurableSubscriber(Topic paramTopic, String paramString1, String paramString2, boolean paramBoolean) + throws JMSException; + + public abstract TopicPublisher createPublisher(Topic paramTopic) + throws JMSException; + + public abstract TemporaryTopic createTemporaryTopic() + throws JMSException; + + public abstract void unsubscribe(String paramString) + throws JMSException; +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\TopicSession.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/TopicSubscriber.java b/fine-ehcache/src/javax/jms/TopicSubscriber.java new file mode 100644 index 000000000..dd5469c42 --- /dev/null +++ b/fine-ehcache/src/javax/jms/TopicSubscriber.java @@ -0,0 +1,17 @@ +package javax.jms; + +public abstract interface TopicSubscriber + extends MessageConsumer +{ + public abstract Topic getTopic() + throws JMSException; + + public abstract boolean getNoLocal() + throws JMSException; +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\TopicSubscriber.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/TransactionInProgressException.java b/fine-ehcache/src/javax/jms/TransactionInProgressException.java new file mode 100644 index 000000000..e40f1aa9b --- /dev/null +++ b/fine-ehcache/src/javax/jms/TransactionInProgressException.java @@ -0,0 +1,80 @@ +/* */ package javax.jms; +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ public class TransactionInProgressException +/* */ extends JMSException +/* */ { +/* */ public TransactionInProgressException(String reason, String errorCode) +/* */ { +/* 62 */ super(reason, errorCode); +/* */ } +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ public TransactionInProgressException(String reason) +/* */ { +/* 72 */ super(reason); +/* */ } +/* */ } + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\TransactionInProgressException.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/TransactionRolledBackException.java b/fine-ehcache/src/javax/jms/TransactionRolledBackException.java new file mode 100644 index 000000000..a39661fbf --- /dev/null +++ b/fine-ehcache/src/javax/jms/TransactionRolledBackException.java @@ -0,0 +1,78 @@ +/* */ package javax.jms; +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ public class TransactionRolledBackException +/* */ extends JMSException +/* */ { +/* */ public TransactionRolledBackException(String reason, String errorCode) +/* */ { +/* 60 */ super(reason, errorCode); +/* */ } +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ +/* */ public TransactionRolledBackException(String reason) +/* */ { +/* 70 */ super(reason); +/* */ } +/* */ } + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\TransactionRolledBackException.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/XAConnection.java b/fine-ehcache/src/javax/jms/XAConnection.java new file mode 100644 index 000000000..05af290e4 --- /dev/null +++ b/fine-ehcache/src/javax/jms/XAConnection.java @@ -0,0 +1,17 @@ +package javax.jms; + +public abstract interface XAConnection + extends Connection +{ + public abstract XASession createXASession() + throws JMSException; + + public abstract Session createSession(boolean paramBoolean, int paramInt) + throws JMSException; +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\XAConnection.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/XAConnectionFactory.java b/fine-ehcache/src/javax/jms/XAConnectionFactory.java new file mode 100644 index 000000000..149708f75 --- /dev/null +++ b/fine-ehcache/src/javax/jms/XAConnectionFactory.java @@ -0,0 +1,16 @@ +package javax.jms; + +public abstract interface XAConnectionFactory +{ + public abstract XAConnection createXAConnection() + throws JMSException; + + public abstract XAConnection createXAConnection(String paramString1, String paramString2) + throws JMSException; +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\XAConnectionFactory.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/XAQueueConnection.java b/fine-ehcache/src/javax/jms/XAQueueConnection.java new file mode 100644 index 000000000..b5cd42f3c --- /dev/null +++ b/fine-ehcache/src/javax/jms/XAQueueConnection.java @@ -0,0 +1,17 @@ +package javax.jms; + +public abstract interface XAQueueConnection + extends XAConnection, QueueConnection +{ + public abstract XAQueueSession createXAQueueSession() + throws JMSException; + + public abstract QueueSession createQueueSession(boolean paramBoolean, int paramInt) + throws JMSException; +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\XAQueueConnection.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/XAQueueConnectionFactory.java b/fine-ehcache/src/javax/jms/XAQueueConnectionFactory.java new file mode 100644 index 000000000..bf8cb0621 --- /dev/null +++ b/fine-ehcache/src/javax/jms/XAQueueConnectionFactory.java @@ -0,0 +1,17 @@ +package javax.jms; + +public abstract interface XAQueueConnectionFactory + extends XAConnectionFactory, QueueConnectionFactory +{ + public abstract XAQueueConnection createXAQueueConnection() + throws JMSException; + + public abstract XAQueueConnection createXAQueueConnection(String paramString1, String paramString2) + throws JMSException; +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\XAQueueConnectionFactory.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/XAQueueSession.java b/fine-ehcache/src/javax/jms/XAQueueSession.java new file mode 100644 index 000000000..229049a77 --- /dev/null +++ b/fine-ehcache/src/javax/jms/XAQueueSession.java @@ -0,0 +1,14 @@ +package javax.jms; + +public abstract interface XAQueueSession + extends XASession +{ + public abstract QueueSession getQueueSession() + throws JMSException; +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\XAQueueSession.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/XASession.java b/fine-ehcache/src/javax/jms/XASession.java new file mode 100644 index 000000000..43a7d6aaa --- /dev/null +++ b/fine-ehcache/src/javax/jms/XASession.java @@ -0,0 +1,27 @@ +package javax.jms; + +import javax.transaction.xa.XAResource; + +public abstract interface XASession + extends Session +{ + public abstract Session getSession() + throws JMSException; + + public abstract XAResource getXAResource(); + + public abstract boolean getTransacted() + throws JMSException; + + public abstract void commit() + throws JMSException; + + public abstract void rollback() + throws JMSException; +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\XASession.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/XATopicConnection.java b/fine-ehcache/src/javax/jms/XATopicConnection.java new file mode 100644 index 000000000..f113333d2 --- /dev/null +++ b/fine-ehcache/src/javax/jms/XATopicConnection.java @@ -0,0 +1,17 @@ +package javax.jms; + +public abstract interface XATopicConnection + extends XAConnection, TopicConnection +{ + public abstract XATopicSession createXATopicSession() + throws JMSException; + + public abstract TopicSession createTopicSession(boolean paramBoolean, int paramInt) + throws JMSException; +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\XATopicConnection.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/XATopicConnectionFactory.java b/fine-ehcache/src/javax/jms/XATopicConnectionFactory.java new file mode 100644 index 000000000..6f8aa3da9 --- /dev/null +++ b/fine-ehcache/src/javax/jms/XATopicConnectionFactory.java @@ -0,0 +1,17 @@ +package javax.jms; + +public abstract interface XATopicConnectionFactory + extends XAConnectionFactory, TopicConnectionFactory +{ + public abstract XATopicConnection createXATopicConnection() + throws JMSException; + + public abstract XATopicConnection createXATopicConnection(String paramString1, String paramString2) + throws JMSException; +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\XATopicConnectionFactory.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file diff --git a/fine-ehcache/src/javax/jms/XATopicSession.java b/fine-ehcache/src/javax/jms/XATopicSession.java new file mode 100644 index 000000000..9956674e6 --- /dev/null +++ b/fine-ehcache/src/javax/jms/XATopicSession.java @@ -0,0 +1,14 @@ +package javax.jms; + +public abstract interface XATopicSession + extends XASession +{ + public abstract TopicSession getTopicSession() + throws JMSException; +} + + +/* Location: D:\git\basic_core_2\base-stable\core-log4j\lib\javax.jms.jar!\javax\jms\XATopicSession.class + * Java compiler version: 5 (49.0) + * JD-Core Version: 0.7.1 + */ \ No newline at end of file