[java-identity-provider COMMIT] /trunk/idp-authn-api/src/main/java/net/shibboleth/idp/authn/context/SubjectCanonicali...

noreply at shibboleth.net noreply at shibboleth.net
Wed Jan 15 11:25:36 EST 2014


Author: rdw
Date: Wed Jan 15 11:25:36 2014
New Revision: 5202

URL: http://svn.shibboleth.net/view/java-identity-provider?rev=5202&view=rev
Log:
Remove spurious and confusing Entity from the Ids..

Modified:
    trunk/idp-authn-api/src/main/java/net/shibboleth/idp/authn/context/SubjectCanonicalizationContext.java

Modified: trunk/idp-authn-api/src/main/java/net/shibboleth/idp/authn/context/SubjectCanonicalizationContext.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-authn-api/src/main/java/net/shibboleth/idp/authn/context/SubjectCanonicalizationContext.java?rev=5202&r1=5201&r2=5202&view=diff
==============================================================================
--- trunk/idp-authn-api/src/main/java/net/shibboleth/idp/authn/context/SubjectCanonicalizationContext.java (original)
+++ trunk/idp-authn-api/src/main/java/net/shibboleth/idp/authn/context/SubjectCanonicalizationContext.java Wed Jan 15 11:25:36 2014
@@ -40,10 +40,10 @@
     @Nullable private String principalName;
     
     /** SP Entity ID.*/
-    private String requesterEntityID;
+    private String requesterId;
     
     /** IdP Entity ID.*/
-    private String responderEntityID;
+    private String responderId;
     
     /** Exception raised by a failed canonicalization. */
     @Nullable private Exception canonicalizationError;
@@ -107,31 +107,31 @@
      * Get the entityID of the SP.
      * @return Returns the requesterEntityID.
      */
-    @Nullable public String getRequesterEntityID() {
-        return requesterEntityID;
+    @Nullable public String getRequesterId() {
+        return requesterId;
     }
 
     /**
      * Set the entityID of the SP.
      * @param spID The requesterEntityID to set.
      */
-    public void setRequesterEntityID(@Nullable String spID) {
-        requesterEntityID = spID;
+    public void setRequesterId(@Nullable String spID) {
+        requesterId = spID;
     }
 
     /**
      * Get the entityID of the IdP.
      * @return Returns the responderEntityID.
      */
-    @Nullable public String getResponderEntityID() {
-        return responderEntityID;
+    @Nullable public String getResponderId() {
+        return responderId;
     }
 
     /**
      * Set the entityID of the IdP.
      * @param idpID The responderEntityID to set.
      */
-    public void setResponderEntityID(@Nullable String idpID) {
-        responderEntityID = idpID;
+    public void setResponderId(@Nullable String idpID) {
+        responderId = idpID;
     }
 }



More information about the commits mailing list