Skip to content

Commit

Permalink
fix minor typos
Browse files Browse the repository at this point in the history
  • Loading branch information
mmoayyed committed Jan 29, 2019
1 parent e44ae57 commit bdc08ce
Show file tree
Hide file tree
Showing 30 changed files with 33 additions and 33 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class CasConfigurationJasyptCipherExecutor implements CipherExecutor<Stri
private final StandardPBEStringEncryptor jasyptInstance;

/**
* Instantiates a new Cas configuration jasypt cipher executor.
* Instantiates a new CAS configuration jasypt cipher executor.
*
* @param environment the environment
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class CasAuditActionContextRecordedEvent extends AbstractCasEvent {
private final AuditActionContext auditActionContext;

/**
* Instantiates a new Cas audit action context recorded event.
* Instantiates a new CAS audit action context recorded event.
*
* @param source the source
* @param auditActionContext the audit action context
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class CasRiskBasedAuthenticationEvaluationStartedEvent extends AbstractCa
private final RegisteredService service;

/**
* Instantiates a new Cas risk based authentication evaluation started event.
* Instantiates a new CAS risk based authentication evaluation started event.
*
* @param source the source
* @param authentication the authentication
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class CasRiskBasedAuthenticationMitigationStartedEvent extends AbstractCa
private final Object score;

/**
* Instantiates a new Cas risk based authentication mitigation started event.
* Instantiates a new CAS risk based authentication mitigation started event.
*
* @param source the source
* @param authentication the authentication
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class CasRiskyAuthenticationDetectedEvent extends AbstractCasEvent {
private final Object score;

/**
* Instantiates a new Cas risky authentication detected event.
* Instantiates a new CAS risky authentication detected event.
*
* @param source the source
* @param authentication the authentication
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class CasRiskyAuthenticationMitigatedEvent extends AbstractCasEvent {
private final Object response;

/**
* Instantiates a new Cas risky authentication mitigated event.
* Instantiates a new CAS risky authentication mitigated event.
*
* @param source the source
* @param authentication the authentication
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public CasConfigurationModifiedEvent(final Object source, final Path file) {
}

/**
* Instantiates a new Cas configuration modified event.
* Instantiates a new CAS configuration modified event.
*
* @param source the source
* @param override the override
Expand All @@ -47,7 +47,7 @@ public CasConfigurationModifiedEvent(final Object source, final boolean override
}

/**
* Instantiates a new Cas configuration modified event.
* Instantiates a new CAS configuration modified event.
*
* @param source the source
* @param file the file
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public class CasEvent {
private Map<String, String> properties = new HashMap<>();

/**
* Instantiates a new Cas event.
* Instantiates a new CAS event.
*/
public CasEvent() {
this.id = System.currentTimeMillis();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class CasProxyGrantingTicketCreatedEvent extends AbstractCasEvent {
private final TicketGrantingTicket ticketGrantingTicket;

/**
* Instantiates a new Cas sso session established event.
* Instantiates a new CAS sso session established event.
*
* @param source the source
* @param ticketGrantingTicket the ticket granting ticket
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class CasProxyTicketGrantedEvent extends AbstractCasEvent {
private final ProxyTicket proxyTicket;

/**
* Instantiates a new Cas proxy ticket granted event.
* Instantiates a new CAS proxy ticket granted event.
*
* @param source the source
* @param proxyGrantingTicket the ticket granting ticket
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class CasServiceTicketGrantedEvent extends AbstractCasEvent {
private final ServiceTicket serviceTicket;

/**
* Instantiates a new Cas service ticket granted event.
* Instantiates a new CAS service ticket granted event.
*
* @param source the source
* @param ticketGrantingTicket the ticket granting ticket
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class CasServiceTicketValidatedEvent extends AbstractCasEvent {
private final ServiceTicket serviceTicket;

/**
* Instantiates a new Cas service ticket validated event.
* Instantiates a new CAS service ticket validated event.
*
* @param source the source
* @param serviceTicket the service ticket
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class CasTicketGrantingTicketCreatedEvent extends AbstractCasEvent {
private final TicketGrantingTicket ticketGrantingTicket;

/**
* Instantiates a new Cas sso session established event.
* Instantiates a new CAS sso session established event.
*
* @param source the source
* @param ticketGrantingTicket the ticket granting ticket
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class CasTicketGrantingTicketDestroyedEvent extends AbstractCasEvent {
private final TicketGrantingTicket ticketGrantingTicket;

/**
* Instantiates a new Cas sso session destroyed event.
* Instantiates a new CAS sso session destroyed event.
*
* @param source the source
* @param ticket the ticket
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public CipherExecutor cacheCredentialsCipherExecutor() {
crypto.getSigning().getKeySize(),
crypto.getEncryption().getKeySize());
}
LOGGER.warn("Cas is configured to capture and cache credentials via Clearpass yet crypto operations for the cached password are "
LOGGER.warn("CAS is configured to capture and cache credentials via Clearpass yet crypto operations for the cached password are "
+ "turned off. Consider enabling the crypto configuration in CAS settings that allow the system to sign & encrypt the captured credential.");
}
return CipherExecutor.noOp();
Expand All @@ -79,7 +79,7 @@ public AuthenticationEventExecutionPlanConfigurer casCoreAuthenticationMetadataA

val cp = casProperties.getClearpass();
if (cp.isCacheCredential()) {
LOGGER.warn("Cas is configured to capture and cache credentials via Clearpass. Sharing the user credential with other applications "
LOGGER.warn("CAS is configured to capture and cache credentials via Clearpass. Sharing the user credential with other applications "
+ "is generally NOT recommended, may lead to security vulnerabilities and MUST only be used as a last resort .");
plan.registerAuthenticationMetadataPopulator(new CacheCredentialsMetaDataPopulator(cacheCredentialsCipherExecutor()));
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public CasConfigurationMetadataRepository() {
}

/**
* Instantiates a new Cas configuration metadata repository.
* Instantiates a new CAS configuration metadata repository.
* Scans the context looking for spring configuration metadata
* resources and then loads them all into a repository instance.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class CasAppender extends AbstractAppender {
private final AppenderRef appenderRef;

/**
* Instantiates a new Cas appender.
* Instantiates a new CAS appender.
*
* @param name the name
* @param config the config
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


/**
* Dummy ProxyHandler that does nothing. Useful for Cas 1.0 compliance as CAS
* Dummy ProxyHandler that does nothing. Useful for CAS 1.0 compliance as CAS
* 1.0 has no proxying capabilities.
*
* @author Scott Battaglia
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
@RequiredArgsConstructor
public abstract class BaseCasMvcEndpoint {
/**
* The Cas properties.
* The CAS properties.
*/
protected final CasConfigurationProperties casProperties;
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
public class CasProtocolView extends ThymeleafView {

/**
* Instantiates a new Cas protocol view.
* Instantiates a new CAS protocol view.
*
* @param templateName the template name
* @param applicationContext the application context
Expand All @@ -38,7 +38,7 @@ public CasProtocolView(final String templateName, final ApplicationContext appli
}

/**
* Instantiates a new Cas protocol view.
* Instantiates a new CAS protocol view.
*
* @param templateName the template name
* @param applicationContext the application context
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public abstract class BaseAuthenticationRequestRiskCalculator implements Authent
protected final CasEventRepository casEventRepository;

/**
* Cas settings.
* CAS settings.
*/
protected final CasConfigurationProperties casProperties;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
public abstract class BaseAuthenticationRiskNotifier implements AuthenticationRiskNotifier {

/**
* Cas properties.
* CAS properties.
*/
protected final CasConfigurationProperties casProperties;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ public static ModelAndView produceErrorView(final Exception e) {
}

/**
* Cas oauth callback url.
* CAS oauth callback url.
*
* @param serverPrefixUrl the server prefix url
* @return the string
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public abstract class BaseUmaEndpointController {
protected final ResourceSetRepository umaResourceSetRepository;

/**
* The Cas properties.
* The CAS properties.
*/
protected final CasConfigurationProperties casProperties;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public class OAuth20DefaultTokenGenerator implements OAuth20TokenGenerator {
protected final TicketRegistry ticketRegistry;

/**
* Cas configuration settings.
* CAS configuration settings.
*/
protected final CasConfigurationProperties casProperties;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public class SamlObjectSignatureValidator {
protected final List overrideWhiteListedAlgorithms;

/**
* Cas settings.
* CAS settings.
*/
protected final CasConfigurationProperties casProperties;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class CasProtocolViewsConfiguration {
private ThymeleafProperties thymeleafProperties;

/**
* The Cas protocol views.
* The CAS protocol views.
*/
@Configuration("CasProtocolViews")
public class CasProtocolViews {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public abstract class BaseWSFederationRequestController {
protected final Service callbackService;

/**
* The Cas properties.
* The CAS properties.
*/
protected final CasConfigurationProperties casProperties;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ public String getAuthorizationUrl(final String relyingPartyIdentifier, final Str
public enum WsFedPrincipalResolutionAttributesType {

/**
* Cas ws fed principal resolution attributes type.
* CAS ws fed principal resolution attributes type.
*/
CAS,
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public void handleApplicationReadyEvent(final ApplicationReadyEvent event) {
}

/**
* Cas configuration server web security configurer.
* CAS configuration server web security configurer.
*
* @param serverProperties the server properties
* @return the web security configurer adapter
Expand Down

0 comments on commit bdc08ce

Please sign in to comment.