You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ro...@apache.org on 2017/03/06 16:57:01 UTC

[1/2] qpid-proton-j git commit: NO-JIRA: fix location in assembly descriptor

Repository: qpid-proton-j
Updated Branches:
  refs/heads/master c8d67f7bf -> 5d364a79a


NO-JIRA: fix location in assembly descriptor


Project: http://git-wip-us.apache.org/repos/asf/qpid-proton-j/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton-j/commit/1fd867e7
Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton-j/tree/1fd867e7
Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton-j/diff/1fd867e7

Branch: refs/heads/master
Commit: 1fd867e78c4efe8be25b1e72ebc5bc79580ff79a
Parents: c8d67f7
Author: Robert Gemmell <ro...@apache.org>
Authored: Mon Mar 6 16:51:05 2017 +0000
Committer: Robert Gemmell <ro...@apache.org>
Committed: Mon Mar 6 16:54:13 2017 +0000

----------------------------------------------------------------------
 apache-qpid-proton-j/src/main/assembly/bin.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-proton-j/blob/1fd867e7/apache-qpid-proton-j/src/main/assembly/bin.xml
----------------------------------------------------------------------
diff --git a/apache-qpid-proton-j/src/main/assembly/bin.xml b/apache-qpid-proton-j/src/main/assembly/bin.xml
index d9b15bc..997c32b 100644
--- a/apache-qpid-proton-j/src/main/assembly/bin.xml
+++ b/apache-qpid-proton-j/src/main/assembly/bin.xml
@@ -103,7 +103,7 @@
             <fileMode>0644</fileMode>
           </fileSet>
           <fileSet>
-            <outputDirectory>examples/engine</outputDirectory>
+            <outputDirectory>examples/reactor</outputDirectory>
             <includes>
               <include>run</include>
             </includes>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org


[2/2] qpid-proton-j git commit: PROTON-1428: remove invalid constructor deprecation markers

Posted by ro...@apache.org.
PROTON-1428: remove invalid constructor deprecation markers


Project: http://git-wip-us.apache.org/repos/asf/qpid-proton-j/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton-j/commit/5d364a79
Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton-j/tree/5d364a79
Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton-j/diff/5d364a79

Branch: refs/heads/master
Commit: 5d364a79a14dce7d7f9dc9b34004b7440e066916
Parents: 1fd867e
Author: Robert Gemmell <ro...@apache.org>
Authored: Mon Mar 6 16:54:18 2017 +0000
Committer: Robert Gemmell <ro...@apache.org>
Committed: Mon Mar 6 16:54:18 2017 +0000

----------------------------------------------------------------------
 .../apache/qpid/proton/engine/impl/ConnectionImpl.java  |  5 ++---
 .../apache/qpid/proton/engine/impl/TransportImpl.java   |  5 ++---
 .../qpid/proton/engine/impl/ssl/SslDomainImpl.java      |  5 ++---
 .../qpid/proton/engine/impl/ssl/SslPeerDetailsImpl.java |  5 ++---
 .../apache/qpid/proton/message/impl/MessageImpl.java    | 12 +++++-------
 .../org/apache/qpid/proton/reactor/impl/Address.java    |  6 ------
 6 files changed, 13 insertions(+), 25 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-proton-j/blob/5d364a79/proton-j/src/main/java/org/apache/qpid/proton/engine/impl/ConnectionImpl.java
----------------------------------------------------------------------
diff --git a/proton-j/src/main/java/org/apache/qpid/proton/engine/impl/ConnectionImpl.java b/proton-j/src/main/java/org/apache/qpid/proton/engine/impl/ConnectionImpl.java
index 57d4a1e..acecbbf 100644
--- a/proton-j/src/main/java/org/apache/qpid/proton/engine/impl/ConnectionImpl.java
+++ b/proton-j/src/main/java/org/apache/qpid/proton/engine/impl/ConnectionImpl.java
@@ -78,10 +78,9 @@ public class ConnectionImpl extends EndpointImpl implements ProtonJConnection
     private static final Symbol[] EMPTY_SYMBOL_ARRAY = new Symbol[0];
 
     /**
-     * @deprecated This constructor's visibility will be reduced to the default scope in a future release.
-     * Client code outside this module should use {@link org.apache.qpid.proton.engine.Connection.Factory#create()} instead.
+     * Application code should use {@link org.apache.qpid.proton.engine.Connection.Factory#create()} instead.
      */
-    @Deprecated public ConnectionImpl()
+    public ConnectionImpl()
     {
     }
 

http://git-wip-us.apache.org/repos/asf/qpid-proton-j/blob/5d364a79/proton-j/src/main/java/org/apache/qpid/proton/engine/impl/TransportImpl.java
----------------------------------------------------------------------
diff --git a/proton-j/src/main/java/org/apache/qpid/proton/engine/impl/TransportImpl.java b/proton-j/src/main/java/org/apache/qpid/proton/engine/impl/TransportImpl.java
index 42126b0..e07b6f9 100644
--- a/proton-j/src/main/java/org/apache/qpid/proton/engine/impl/TransportImpl.java
+++ b/proton-j/src/main/java/org/apache/qpid/proton/engine/impl/TransportImpl.java
@@ -143,10 +143,9 @@ public class TransportImpl extends EndpointImpl
     private List<TransportLayer> _additionalTransportLayers;
 
     /**
-     * @deprecated This constructor's visibility will be reduced to the default scope in a future release.
-     * Client code outside this module should use {@link org.apache.qpid.proton.engine.Transport.Factory#create()} instead
+     * Application code should use {@link org.apache.qpid.proton.engine.Transport.Factory#create()} instead
      */
-    @Deprecated public TransportImpl()
+    public TransportImpl()
     {
         this(DEFAULT_MAX_FRAME_SIZE);
     }

http://git-wip-us.apache.org/repos/asf/qpid-proton-j/blob/5d364a79/proton-j/src/main/java/org/apache/qpid/proton/engine/impl/ssl/SslDomainImpl.java
----------------------------------------------------------------------
diff --git a/proton-j/src/main/java/org/apache/qpid/proton/engine/impl/ssl/SslDomainImpl.java b/proton-j/src/main/java/org/apache/qpid/proton/engine/impl/ssl/SslDomainImpl.java
index 9e7201c..3928b05 100644
--- a/proton-j/src/main/java/org/apache/qpid/proton/engine/impl/ssl/SslDomainImpl.java
+++ b/proton-j/src/main/java/org/apache/qpid/proton/engine/impl/ssl/SslDomainImpl.java
@@ -38,10 +38,9 @@ public class SslDomainImpl implements SslDomain, ProtonSslEngineProvider, Proton
     private final SslEngineFacadeFactory _sslEngineFacadeFactory = new SslEngineFacadeFactory();
 
     /**
-     * @deprecated This constructor's visibility will be reduced to the default scope in a future release.
-     * Client code outside this module should use {@link SslDomain.Factory#create()} instead.
+     * Application code should use {@link org.apache.qpid.proton.engine.SslDomain.Factory#create()} instead.
      */
-    @Deprecated public SslDomainImpl()
+    public SslDomainImpl()
     {
     }
 

http://git-wip-us.apache.org/repos/asf/qpid-proton-j/blob/5d364a79/proton-j/src/main/java/org/apache/qpid/proton/engine/impl/ssl/SslPeerDetailsImpl.java
----------------------------------------------------------------------
diff --git a/proton-j/src/main/java/org/apache/qpid/proton/engine/impl/ssl/SslPeerDetailsImpl.java b/proton-j/src/main/java/org/apache/qpid/proton/engine/impl/ssl/SslPeerDetailsImpl.java
index cbd9755..516efc6 100644
--- a/proton-j/src/main/java/org/apache/qpid/proton/engine/impl/ssl/SslPeerDetailsImpl.java
+++ b/proton-j/src/main/java/org/apache/qpid/proton/engine/impl/ssl/SslPeerDetailsImpl.java
@@ -27,10 +27,9 @@ public class SslPeerDetailsImpl implements ProtonJSslPeerDetails
     private final int _port;
 
     /**
-     * @deprecated This constructor's visibility will be reduced to the default scope in a future release.
-     * Client code outside this module should use {@link org.apache.qpid.proton.engine.SslPeerDetails.Factory#create(String, int)} instead.
+     * Application code should use {@link org.apache.qpid.proton.engine.SslPeerDetails.Factory#create(String, int)} instead.
      */
-    @Deprecated public SslPeerDetailsImpl(String hostname, int port)
+    public SslPeerDetailsImpl(String hostname, int port)
     {
         _hostname = hostname;
         _port = port;

http://git-wip-us.apache.org/repos/asf/qpid-proton-j/blob/5d364a79/proton-j/src/main/java/org/apache/qpid/proton/message/impl/MessageImpl.java
----------------------------------------------------------------------
diff --git a/proton-j/src/main/java/org/apache/qpid/proton/message/impl/MessageImpl.java b/proton-j/src/main/java/org/apache/qpid/proton/message/impl/MessageImpl.java
index df6373f..cd90789 100644
--- a/proton-j/src/main/java/org/apache/qpid/proton/message/impl/MessageImpl.java
+++ b/proton-j/src/main/java/org/apache/qpid/proton/message/impl/MessageImpl.java
@@ -56,19 +56,17 @@ public class MessageImpl implements ProtonJMessage
       };
 
     /**
-     * @deprecated This constructor's visibility will be reduced to the default scope in a future release.
-     * Client code outside this module should use {@link Message.Factory#create()} instead
+     * Application code should use {@link org.apache.qpid.proton.message.Message.Factory#create()} instead.
      */
-    @Deprecated public MessageImpl()
+    public MessageImpl()
     {
     }
 
     /**
-     * @deprecated This constructor's visibility will be reduced to the default scope in a future release.
-     * Client code outside this module should instead use
-     * {@link Message.Factory#create(Header, DeliveryAnnotations, MessageAnnotations, Properties, ApplicationProperties, Section, Footer)}
+     * Application code should instead use
+     * {@link org.apache.qpid.proton.message.Message.Factory#create(Header, DeliveryAnnotations, MessageAnnotations, Properties, ApplicationProperties, Section, Footer)}
      */
-    @Deprecated public MessageImpl(Header header, DeliveryAnnotations deliveryAnnotations, MessageAnnotations messageAnnotations,
+    public MessageImpl(Header header, DeliveryAnnotations deliveryAnnotations, MessageAnnotations messageAnnotations,
                        Properties properties, ApplicationProperties applicationProperties, Section body, Footer footer)
     {
         _header = header;

http://git-wip-us.apache.org/repos/asf/qpid-proton-j/blob/5d364a79/proton-j/src/main/java/org/apache/qpid/proton/reactor/impl/Address.java
----------------------------------------------------------------------
diff --git a/proton-j/src/main/java/org/apache/qpid/proton/reactor/impl/Address.java b/proton-j/src/main/java/org/apache/qpid/proton/reactor/impl/Address.java
index 619912f..5e860d2 100644
--- a/proton-j/src/main/java/org/apache/qpid/proton/reactor/impl/Address.java
+++ b/proton-j/src/main/java/org/apache/qpid/proton/reactor/impl/Address.java
@@ -48,17 +48,11 @@ public class Address
         _name = null;
     }
 
-    /**
-     * @deprecated Messenger will be removed from upcoming proton-j releases.
-     */
     public Address()
     {
         clear();
     }
 
-    /**
-     * @deprecated Messenger will be removed from upcoming proton-j releases.
-     */
     public Address(String address)
     {
         clear();


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org