Skip to content

Commit

Permalink
identity => PSK identity javadoc clarification
Browse files Browse the repository at this point in the history
  • Loading branch information
jvermillard committed Mar 31, 2017
1 parent 83fbb9f commit ffb3610
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Expand Up @@ -28,10 +28,10 @@ public interface BootstrapSecurityStore {
List<SecurityInfo> getAllByEndpoint(String endpoint);

/**
* Returns the security information for an identity.
* Returns the security information for a PSK identity.
*
* @param identity of the client
* @param PSK identity of the client
* @return the security information of <code>null</code> if not found.
*/
SecurityInfo getByIdentity(String identity);
SecurityInfo getByIdentity(String pskIdentity);
}
Expand Up @@ -23,17 +23,17 @@ public interface SecurityStore {
/**
* Returns the security information for a given end-point.
*
* @param endpoint the client end-point
* @param endpoint the client LWM2M end-point
* @return the security information of <code>null</code> if not found.
*/
SecurityInfo getByEndpoint(String endpoint);

/**
* Returns the security information for a identity.
* Returns the security information for a PSK identity.
*
* @param identity of the client
* @param the PSK identity of the client
* @return the security information of <code>null</code> if not found.
*/
SecurityInfo getByIdentity(String identity);
SecurityInfo getByIdentity(String pskIdentity);

}

0 comments on commit ffb3610

Please sign in to comment.