[jira] [Commented] (STREAMS-615) Upgrade Juneau to 7.2.1

2018-10-31 Thread ASF GitHub Bot (JIRA)


[ 
https://issues.apache.org/jira/browse/STREAMS-615?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16670652#comment-16670652
 ] 

ASF GitHub Bot commented on STREAMS-615:


steveblackmon closed pull request #467: resolves STREAMS-615
URL: https://github.com/apache/streams/pull/467
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/pom.xml b/pom.xml
index 648525fdf3..71ad906fe2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -377,7 +377,7 @@
 0.5.0
 2.4.0
 0.1.10
-7.1.0
+7.2.1
 0.4.10
 0.13.1
 0.11.1
diff --git 
a/streams-contrib/streams-provider-twitter/src/main/java/org/apache/streams/twitter/api/Account.java
 
b/streams-contrib/streams-provider-twitter/src/main/java/org/apache/streams/twitter/api/Account.java
index 960992717b..d83b48a010 100644
--- 
a/streams-contrib/streams-provider-twitter/src/main/java/org/apache/streams/twitter/api/Account.java
+++ 
b/streams-contrib/streams-provider-twitter/src/main/java/org/apache/streams/twitter/api/Account.java
@@ -20,16 +20,16 @@
 
 import org.apache.streams.twitter.pojo.User;
 
-import org.apache.juneau.remoteable.Body;
-import org.apache.juneau.remoteable.RemoteMethod;
-import org.apache.juneau.remoteable.Remoteable;
+import org.apache.juneau.http.annotation.Body;
+import org.apache.juneau.remote.RemoteInterface;
+import org.apache.juneau.rest.client.remote.RemoteMethod;
 
 import java.util.List;
 
 /**
  * Interface for /account methods.
  */
-@Remoteable(path = "https://api.twitter.com/1.1/account;)
+@RemoteInterface(path = "https://api.twitter.com/1.1/account;)
 public interface Account {
 
   /**
@@ -39,7 +39,7 @@
* @see https://developer.twitter.com/en/docs/accounts-and-users/manage-account-settings/api-reference/get-account-settings;>https://developer.twitter.com/en/docs/accounts-and-users/manage-account-settings/api-reference/get-account-settings
*
*/
-  @RemoteMethod(httpMethod = "GET", path = "/settings.json")
+  @RemoteMethod(method = "GET", path = "/settings.json")
   public AccountSettings settings();
 
   /**
@@ -49,7 +49,7 @@
* @see https://developer.twitter.com/en/docs/accounts-and-users/manage-account-settings/api-reference/get-account-verify_credentials;>https://developer.twitter.com/en/docs/accounts-and-users/manage-account-settings/api-reference/get-account-verify_credentials
*
*/
-  @RemoteMethod(httpMethod = "GET", path = "/verify_credentials.json")
+  @RemoteMethod(method = "GET", path = "/verify_credentials.json")
   public User verifyCredentials();
 
   /**
@@ -59,7 +59,7 @@
* @see https://developer.twitter.com/en/docs/accounts-and-users/manage-account-settings/api-reference/post-account-update_profile;>https://developer.twitter.com/en/docs/accounts-and-users/manage-account-settings/api-reference/post-account-update_profile
*
*/
-  @RemoteMethod(httpMethod = "POST", path = "/update_profile.json")
+  @RemoteMethod(method = "POST", path = "/update_profile.json")
   public User updateProfile(@Body UpdateProfileRequest parameters);
 
   /**
@@ -69,7 +69,7 @@
* @see https://developer.twitter.com/en/docs/accounts-and-users/manage-account-settings/api-reference/post-account-settings;>https://developer.twitter.com/en/docs/accounts-and-users/manage-account-settings/api-reference/post-account-settings
*
*/
-  @RemoteMethod(httpMethod = "POST", path = "/update_settings.json")
+  @RemoteMethod(method = "POST", path = "/update_settings.json")
   public AccountSettings updateSettings(@Body UpdateProfileRequest parameters);
 
 }
diff --git 
a/streams-contrib/streams-provider-twitter/src/main/java/org/apache/streams/twitter/api/AccountActivity.java
 
b/streams-contrib/streams-provider-twitter/src/main/java/org/apache/streams/twitter/api/AccountActivity.java
index 114a8a607b..cf3d53a594 100644
--- 
a/streams-contrib/streams-provider-twitter/src/main/java/org/apache/streams/twitter/api/AccountActivity.java
+++ 
b/streams-contrib/streams-provider-twitter/src/main/java/org/apache/streams/twitter/api/AccountActivity.java
@@ -20,11 +20,11 @@
 
 import org.apache.streams.twitter.pojo.User;
 
-import org.apache.juneau.remoteable.Path;
-import org.apache.juneau.remoteable.Query;
-import org.apache.juneau.remoteable.RemoteMethod;
-import org.apache.juneau.remoteable.Remoteable;
+import org.apache.juneau.http.annotation.Path;
+import org.apache.juneau.http.annotation.Query;
+import org.apache.juneau.remote.RemoteInterface;
 import org.apache.juneau.rest.client.RestCallException;
+import org.apache.juneau.rest.client.remote.RemoteMethod;
 
 import java.lang.reflect.InvocationTargetException;
 import java.util.List;
@@ -34,7 +34,7 @@
  *
  * @see 

[jira] [Commented] (STREAMS-615) Upgrade Juneau to 7.2.1

2018-10-31 Thread ASF GitHub Bot (JIRA)


[ 
https://issues.apache.org/jira/browse/STREAMS-615?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16670299#comment-16670299
 ] 

ASF GitHub Bot commented on STREAMS-615:


steveblackmon closed pull request #467: resolves STREAMS-615
URL: https://github.com/apache/streams/pull/467
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/pom.xml b/pom.xml
index 648525fdf3..71ad906fe2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -377,7 +377,7 @@
 0.5.0
 2.4.0
 0.1.10
-7.1.0
+7.2.1
 0.4.10
 0.13.1
 0.11.1
diff --git 
a/streams-contrib/streams-provider-twitter/src/main/java/org/apache/streams/twitter/api/Account.java
 
b/streams-contrib/streams-provider-twitter/src/main/java/org/apache/streams/twitter/api/Account.java
index 960992717b..d83b48a010 100644
--- 
a/streams-contrib/streams-provider-twitter/src/main/java/org/apache/streams/twitter/api/Account.java
+++ 
b/streams-contrib/streams-provider-twitter/src/main/java/org/apache/streams/twitter/api/Account.java
@@ -20,16 +20,16 @@
 
 import org.apache.streams.twitter.pojo.User;
 
-import org.apache.juneau.remoteable.Body;
-import org.apache.juneau.remoteable.RemoteMethod;
-import org.apache.juneau.remoteable.Remoteable;
+import org.apache.juneau.http.annotation.Body;
+import org.apache.juneau.remote.RemoteInterface;
+import org.apache.juneau.rest.client.remote.RemoteMethod;
 
 import java.util.List;
 
 /**
  * Interface for /account methods.
  */
-@Remoteable(path = "https://api.twitter.com/1.1/account;)
+@RemoteInterface(path = "https://api.twitter.com/1.1/account;)
 public interface Account {
 
   /**
@@ -39,7 +39,7 @@
* @see https://developer.twitter.com/en/docs/accounts-and-users/manage-account-settings/api-reference/get-account-settings;>https://developer.twitter.com/en/docs/accounts-and-users/manage-account-settings/api-reference/get-account-settings
*
*/
-  @RemoteMethod(httpMethod = "GET", path = "/settings.json")
+  @RemoteMethod(method = "GET", path = "/settings.json")
   public AccountSettings settings();
 
   /**
@@ -49,7 +49,7 @@
* @see https://developer.twitter.com/en/docs/accounts-and-users/manage-account-settings/api-reference/get-account-verify_credentials;>https://developer.twitter.com/en/docs/accounts-and-users/manage-account-settings/api-reference/get-account-verify_credentials
*
*/
-  @RemoteMethod(httpMethod = "GET", path = "/verify_credentials.json")
+  @RemoteMethod(method = "GET", path = "/verify_credentials.json")
   public User verifyCredentials();
 
   /**
@@ -59,7 +59,7 @@
* @see https://developer.twitter.com/en/docs/accounts-and-users/manage-account-settings/api-reference/post-account-update_profile;>https://developer.twitter.com/en/docs/accounts-and-users/manage-account-settings/api-reference/post-account-update_profile
*
*/
-  @RemoteMethod(httpMethod = "POST", path = "/update_profile.json")
+  @RemoteMethod(method = "POST", path = "/update_profile.json")
   public User updateProfile(@Body UpdateProfileRequest parameters);
 
   /**
@@ -69,7 +69,7 @@
* @see https://developer.twitter.com/en/docs/accounts-and-users/manage-account-settings/api-reference/post-account-settings;>https://developer.twitter.com/en/docs/accounts-and-users/manage-account-settings/api-reference/post-account-settings
*
*/
-  @RemoteMethod(httpMethod = "POST", path = "/update_settings.json")
+  @RemoteMethod(method = "POST", path = "/update_settings.json")
   public AccountSettings updateSettings(@Body UpdateProfileRequest parameters);
 
 }
diff --git 
a/streams-contrib/streams-provider-twitter/src/main/java/org/apache/streams/twitter/api/AccountActivity.java
 
b/streams-contrib/streams-provider-twitter/src/main/java/org/apache/streams/twitter/api/AccountActivity.java
index 114a8a607b..cf3d53a594 100644
--- 
a/streams-contrib/streams-provider-twitter/src/main/java/org/apache/streams/twitter/api/AccountActivity.java
+++ 
b/streams-contrib/streams-provider-twitter/src/main/java/org/apache/streams/twitter/api/AccountActivity.java
@@ -20,11 +20,11 @@
 
 import org.apache.streams.twitter.pojo.User;
 
-import org.apache.juneau.remoteable.Path;
-import org.apache.juneau.remoteable.Query;
-import org.apache.juneau.remoteable.RemoteMethod;
-import org.apache.juneau.remoteable.Remoteable;
+import org.apache.juneau.http.annotation.Path;
+import org.apache.juneau.http.annotation.Query;
+import org.apache.juneau.remote.RemoteInterface;
 import org.apache.juneau.rest.client.RestCallException;
+import org.apache.juneau.rest.client.remote.RemoteMethod;
 
 import java.lang.reflect.InvocationTargetException;
 import java.util.List;
@@ -34,7 +34,7 @@
  *
  * @see 

[jira] [Commented] (STREAMS-615) Upgrade Juneau to 7.2.1

2018-10-31 Thread ASF GitHub Bot (JIRA)


[ 
https://issues.apache.org/jira/browse/STREAMS-615?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16670300#comment-16670300
 ] 

ASF GitHub Bot commented on STREAMS-615:


steveblackmon commented on issue #467: resolves STREAMS-615
URL: https://github.com/apache/streams/pull/467#issuecomment-434743022
 
 
   re-opening now that streams-project-pullrequests on jenkins is fixed


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


> Upgrade Juneau to 7.2.1
> ---
>
> Key: STREAMS-615
> URL: https://issues.apache.org/jira/browse/STREAMS-615
> Project: Streams
>  Issue Type: Task
>Reporter: Steve Blackmon
>Priority: Major
>
> Upgrade Juneau to 7.2.1



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (STREAMS-615) Upgrade Juneau to 7.2.1

2018-10-29 Thread ASF GitHub Bot (JIRA)


[ 
https://issues.apache.org/jira/browse/STREAMS-615?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16668063#comment-16668063
 ] 

ASF GitHub Bot commented on STREAMS-615:


steveblackmon opened a new pull request #467: resolves STREAMS-615
URL: https://github.com/apache/streams/pull/467
 
 
   resolves STREAMS-615: Upgrade Juneau to 7.2.1 
(https://issues.apache.org/jira/browse/STREAMS-615)


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


> Upgrade Juneau to 7.2.1
> ---
>
> Key: STREAMS-615
> URL: https://issues.apache.org/jira/browse/STREAMS-615
> Project: Streams
>  Issue Type: Task
>Reporter: Steve Blackmon
>Priority: Major
>
> Upgrade Juneau to 7.2.1



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)