You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by co...@apache.org on 2017/06/26 14:37:26 UTC

[1/2] syncope git commit: Fixing some Javadoc warnings

Repository: syncope
Updated Branches:
  refs/heads/master 8432cce7e -> 053cb7e73


Fixing some Javadoc warnings


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/b5889b25
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/b5889b25
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/b5889b25

Branch: refs/heads/master
Commit: b5889b250f4b3ed2900feebe3f2c48899c1a517a
Parents: 8432cce
Author: Colm O hEigeartaigh <co...@apache.org>
Authored: Mon Jun 26 15:32:28 2017 +0100
Committer: Colm O hEigeartaigh <co...@apache.org>
Committed: Mon Jun 26 15:32:28 2017 +0100

----------------------------------------------------------------------
 .../apache/syncope/client/lib/SyncopeClientFactoryBean.java | 9 ++++++---
 .../apache/syncope/common/lib/search/SyncopeProperty.java   | 2 +-
 .../apache/syncope/ide/netbeans/view/ServerDetailsView.java | 2 ++
 3 files changed, 9 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/b5889b25/client/lib/src/main/java/org/apache/syncope/client/lib/SyncopeClientFactoryBean.java
----------------------------------------------------------------------
diff --git a/client/lib/src/main/java/org/apache/syncope/client/lib/SyncopeClientFactoryBean.java b/client/lib/src/main/java/org/apache/syncope/client/lib/SyncopeClientFactoryBean.java
index 1e5924b..eba161d 100644
--- a/client/lib/src/main/java/org/apache/syncope/client/lib/SyncopeClientFactoryBean.java
+++ b/client/lib/src/main/java/org/apache/syncope/client/lib/SyncopeClientFactoryBean.java
@@ -245,7 +245,8 @@ public class SyncopeClientFactoryBean {
 
     /**
      * Builds client instance with the given credentials.
-     * Such credentials will be used only to obtain a valid JWT in the {@link HttpHeaders#AUTHORIZATION} header;
+     * Such credentials will be used only to obtain a valid JWT in the
+     * {@link javax.ws.rs.core.HttpHeaders#AUTHORIZATION} header;
      *
      * @param username username
      * @param password password
@@ -256,11 +257,13 @@ public class SyncopeClientFactoryBean {
     }
 
     /**
-     * Builds client instance which will be passing the provided value in the {@link HttpHeaders#AUTHORIZATION}
+     * Builds client instance which will be passing the provided value in the
+     * {@link javax.ws.rs.core.HttpHeaders#AUTHORIZATION}
      * request header.
      *
      * @param jwt value received after login, in the {@link RESTHeaders#TOKEN} response header
-     * @return client instance which will be passing the provided value in the {@link HttpHeaders#AUTHORIZATION}
+     * @return client instance which will be passing the provided value in the
+     *         {@link javax.ws.rs.core.HttpHeaders#AUTHORIZATION}
      * request header
      */
     public SyncopeClient create(final String jwt) {

http://git-wip-us.apache.org/repos/asf/syncope/blob/b5889b25/common/lib/src/main/java/org/apache/syncope/common/lib/search/SyncopeProperty.java
----------------------------------------------------------------------
diff --git a/common/lib/src/main/java/org/apache/syncope/common/lib/search/SyncopeProperty.java b/common/lib/src/main/java/org/apache/syncope/common/lib/search/SyncopeProperty.java
index fe2d47e..bcc55ca 100644
--- a/common/lib/src/main/java/org/apache/syncope/common/lib/search/SyncopeProperty.java
+++ b/common/lib/src/main/java/org/apache/syncope/common/lib/search/SyncopeProperty.java
@@ -37,7 +37,7 @@ public interface SyncopeProperty extends Property {
 
     /** Is textual property different (ignoring case) than given literal or not matching given pattern?
      *
-     * @param literalOrPattern
+     * @param literalOrPattern The literal or Pattern String
      * @return updated condition
      */
     CompleteCondition notEqualTolIgnoreCase(String literalOrPattern);

http://git-wip-us.apache.org/repos/asf/syncope/blob/b5889b25/ide/netbeans/src/main/java/org/apache/syncope/ide/netbeans/view/ServerDetailsView.java
----------------------------------------------------------------------
diff --git a/ide/netbeans/src/main/java/org/apache/syncope/ide/netbeans/view/ServerDetailsView.java b/ide/netbeans/src/main/java/org/apache/syncope/ide/netbeans/view/ServerDetailsView.java
index ba9c60c..58ebde2 100644
--- a/ide/netbeans/src/main/java/org/apache/syncope/ide/netbeans/view/ServerDetailsView.java
+++ b/ide/netbeans/src/main/java/org/apache/syncope/ide/netbeans/view/ServerDetailsView.java
@@ -36,6 +36,8 @@ public class ServerDetailsView extends JDialog {
 
     /**
      * Creates new form LoginView
+     * @param parent Parent Frame
+     * @param modal Whether it is modal or not
      */
     public ServerDetailsView(final java.awt.Frame parent, final boolean modal) {
         super(parent, modal);


[2/2] syncope git commit: SYNCOPE-1119 - Updating docs again

Posted by co...@apache.org.
SYNCOPE-1119 - Updating docs again


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/053cb7e7
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/053cb7e7
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/053cb7e7

Branch: refs/heads/master
Commit: 053cb7e733ab5f53d8cf8b87792944800311ed0c
Parents: b5889b2
Author: Colm O hEigeartaigh <co...@apache.org>
Authored: Mon Jun 26 15:37:00 2017 +0100
Committer: Colm O hEigeartaigh <co...@apache.org>
Committed: Mon Jun 26 15:37:00 2017 +0100

----------------------------------------------------------------------
 src/main/asciidoc/getting-started/movingForward.adoc | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/053cb7e7/src/main/asciidoc/getting-started/movingForward.adoc
----------------------------------------------------------------------
diff --git a/src/main/asciidoc/getting-started/movingForward.adoc b/src/main/asciidoc/getting-started/movingForward.adoc
index 2ab602e..9162f6a 100644
--- a/src/main/asciidoc/getting-started/movingForward.adoc
+++ b/src/main/asciidoc/getting-started/movingForward.adoc
@@ -45,4 +45,5 @@ Authorization" of the Reference Guide for more information.
 
 Note that if you installed Syncope using either the installer or the maven archetype methods, then you will have already
 supplied custom values for "*secretKey*" and "*anonymousKey*". From Syncope 2.0.4 onwards, both installation methods will also
-query for "*jwsKey*" and "*adminPassword*", and so no further action is required for these installation methods.
+query for "*jwsKey*", and the installer method will prompt for the "*adminPassword*" as well. 
+