Fixed a few spellings

This commit is contained in:
Kai Zimmermann
2016-05-02 18:07:23 +02:00
parent 328d5ab2b0
commit 2c5969b080
3 changed files with 9 additions and 6 deletions

View File

@@ -57,10 +57,10 @@ $ java -jar ./examples/hawkbit-mgmt-api-client/target/hawkbit-mgmt-api-client-#v
# Modules # Modules
`hawkbit-core` : core elements. `hawkbit-core` : internal interfaces and utility classes..
`hawkbit-security-core` : core security elements. `hawkbit-security-core` : authentication and authorization.
`hawkbit-security-integration` : security integration elements to integrate security into hawkbit. `hawkbit-security-integration` : authentication and authorization integrated with the APIs.
`hawkbit-artifact-repository-mongo` : artifact repository implementation to mongoDB. `hawkbit-artifact-repository-mongo` : artifact repository implementation to MongoDB.
`hawkbit-autoconfigure` : spring-boot auto-configuration. `hawkbit-autoconfigure` : spring-boot auto-configuration.
`hawkbit-dmf-api` : API for the Device Management Integration. `hawkbit-dmf-api` : API for the Device Management Integration.
`hawkbit-dmf-amqp` : AMQP endpoint implementation for the DMF API. `hawkbit-dmf-amqp` : AMQP endpoint implementation for the DMF API.

3
hawkbit-core/README.md Normal file
View File

@@ -0,0 +1,3 @@
# hawkBit Core
Various internal interfaces and utility classes.

View File

@@ -24,11 +24,11 @@ import org.springframework.security.core.authority.SimpleGrantedAuthority;
import org.springframework.security.web.authentication.preauth.PreAuthenticatedAuthenticationToken; import org.springframework.security.web.authentication.preauth.PreAuthenticatedAuthenticationToken;
/** /**
* An spring authentication provider which supportes authentication tokens of * An spring authentication provider which supports authentication tokens of
* type {@link PreAuthenticatedAuthenticationToken} created by the * type {@link PreAuthenticatedAuthenticationToken} created by the
* {@link ControllerPreAuthenticatedSecurityHeaderFilter}. * {@link ControllerPreAuthenticatedSecurityHeaderFilter}.
* *
* Addtionally to the authentication token providing the principal and the * Additionally to the authentication token providing the principal and the
* credentials which must be match, this authentication provider can also check * credentials which must be match, this authentication provider can also check
* the remote IP address of the request. * the remote IP address of the request.
* *