Skip to content

Commit

Permalink
updated 3.0 to 3.0.0. Removed trailing comma from arrays
Browse files Browse the repository at this point in the history
  • Loading branch information
SavvasMisaghMoayyed committed Nov 19, 2014
1 parent 16f063a commit c3e62e9
Show file tree
Hide file tree
Showing 178 changed files with 179 additions and 182 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,10 @@ public RegisteredServiceSimpleFormController(final ServicesManager servicesManag
*/
@InitBinder
protected void initBinder(final HttpServletRequest request, final ServletRequestDataBinder binder) throws Exception {
binder.setRequiredFields(new String[] {"description", "serviceId",
binder.setRequiredFields("description", "serviceId",
"name", "enabled", "ssoEnabled",
"anonymousAccess", "evaluationOrder", });
binder.setDisallowedFields(new String[] {"id"});
"anonymousAccess", "evaluationOrder");
binder.setDisallowedFields("id");
binder.registerCustomEditor(String.class, new StringTrimmerEditor(true));
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

/**
* Common test cases for /serviceValidate and /proxyValidate.
* @since 3.0
* @since 3.0.0
*/
public abstract class AbstractCas2ValidateCompatibilityTests extends AbstractCompatibilityTests {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
*
* @author Scott Battaglia
* @author Drew Mazurek
* @since 3.0
* @since 3.0.0
*
*/
public class LoginAsCredentialsAcceptorCompatibilityTests extends AbstractLoginCompatibilityTests {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
*
* @author Scott Battaglia
* @author Drew Mazurek
* @since 3.0
* @since 3.0.0
*
*/
public class LoginAsCredentialsRequestorCompatibilityTests extends AbstractLoginCompatibilityTests {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
/**
* Helper class for accomplishing CAS login, a common task of compatibility tests.
*
* @since 3.0
* @since 3.0.0
*/
public final class LoginHelper {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
/**
*
* @author Scott Battaglia
* @since 3.0
* @since 3.0.0
*
*/
public class LogoutCompatibilityTests extends AbstractCompatibilityTests {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* Note that this extends Cas2ValidateCompatibilityTests, which provides
* several tests that apply to both service validate and proxy validate.
*
* @since 3.0
* @since 3.0.0
*/
public class ProxyValidateCompatibilityTests
extends AbstractCas2ValidateCompatibilityTests {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* Note that this extends Cas2ValidateCompatibilityTests, which provides
* several tests that apply to both service validate and proxy validate.
*
* @since 3.0
* @since 3.0.0
*/
public class ServiceValidateCompatibilityTests
extends AbstractCas2ValidateCompatibilityTests {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* @author Scott Battaglia
* @author Andrew Petro
* @author Drew Mazurek
* @since 3.0
* @since 3.0.0
*/
public class ValidateCompatibilityTests extends AbstractCompatibilityTests {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
*
* @author Dmitriy Kopylenko
* @since 3.0
* @since 3.0.0
*/
public final class CasVersion {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
* @author Scott Battaglia
* @author Marvin S. Addison
* @author Misagh Moayyed
* @since 3.0
* @since 3.0.0
*/
public interface CentralAuthenticationService {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
* @author William G. Thompson, Jr.
* @author Scott Battaglia
* @author Dmitry Kopylenko
* @since 3.0
* @since 3.0.0
*/
public final class CentralAuthenticationServiceImpl implements CentralAuthenticationService {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
* @author Scott Battaglia
* @author Marvin S. Addison
*
* @since 3.0
* @since 3.0.0
*/
public class AcceptUsersAuthenticationHandler extends AbstractUsernamePasswordAuthenticationHandler {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
* @author Dmitriy Kopylenko
* @author Scott Battaglia
* @author Marvin S. Addison
* @since 3.0
* @since 3.0.0
*/
public interface Authentication extends Serializable {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* @author Scott Battaglia
* @author Marvin S. Addison
*
* @since 3.0
* @since 3.0.0
*/
public interface AuthenticationManager {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* @author Scott Battaglia
* @author Marvin S. Addison
*
* @since 3.0
* @since 3.0.0
*/
public interface AuthenticationMetaDataPopulator {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* @author William G. Thompson, Jr.
* @author Marvin S. Addison
* @see CredentialMetaData
* @since 3.0
* @since 3.0.0
*/
public interface Credential {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
*
* @author Scott Battaglia
* @author Marvin S. Addison
* @since 3.0
* @since 3.0.0
*/
public class HttpBasedServiceCredential extends AbstractCredential {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
* @author Scott Battaglia
* @author Marvin S. Addison
*
* @since 3.0
* @since 3.0.0
*/
public final class ImmutableAuthentication implements Authentication {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
*
* @author Scott Battaglia
* @author Marvin S. Addison
* @since 3.0
* @since 3.0.0
*/
public class UsernamePasswordCredential implements Credential, Serializable {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
* other AuthenticationExceptions.
*
* @author Scott Battaglia
* @since 3.0
* @since 3.0.0
*/
public abstract class AbstractAuthenticationException extends RootCasException {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* going on.
*
* @author Scott Battaglia
* @since 3.0
* @since 3.0.0
*/
public abstract class AbstractUncategorizedAuthenticationException extends AbstractAuthenticationException {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
*
* @author Scott Battaglia
* @since 3.0
* @since 3.0.0
*/
public class BadCredentialsAuthenticationException extends AbstractAuthenticationException {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
*
* @author Scott Battaglia
* @since 3.0
* @since 3.0.0
*/
public class BadPasswordAuthenticationException extends
BadUsernameOrPasswordAuthenticationException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
*
* @author Scott Battaglia
* @since 3.0
* @since 3.0.0
*/
public class BadUsernameOrPasswordAuthenticationException extends
BadCredentialsAuthenticationException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
*
* @author Scott Battaglia
* @since 3.0
* @since 3.0.0
*/
public class BlockedCredentialsAuthenticationException extends
AbstractAuthenticationException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
*
* @author Scott Battaglia
* @since 3.0
* @since 3.0.0
* <p>
* This is a published and supported CAS Server 3 API.
* </p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
*
* @author Scott Battaglia
* @since 3.0
* @since 3.0.0
*/
public final class PlainTextPasswordEncoder implements PasswordEncoder {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
*
* @author Scott Battaglia
* @since 3.0
* @since 3.0.0
*/
public class UnknownUsernameAuthenticationException extends
BadUsernameOrPasswordAuthenticationException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
*
* @author Scott Battaglia
* @since 3.0
* @since 3.0.0
*/
public final class UnsupportedCredentialsException extends
AbstractAuthenticationException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
* @author Scott Battaglia
* @author Marvin S. Addison
*
* @since 3.0
* @since 3.0.0
*/
public abstract class AbstractUsernamePasswordAuthenticationHandler extends
AbstractPreAndPostProcessingAuthenticationHandler {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
*
* @author Scott Battaglia
* @since 3.0
* @since 3.0.0
*/
public final class HttpBasedServiceCredentialsAuthenticationHandler extends AbstractAuthenticationHandler {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
* @see javax.security.auth.callback.CallbackHandler
* @see javax.security.auth.callback.PasswordCallback
* @see javax.security.auth.callback.NameCallback
* @since 3.0.5
* @since 3.0.0.5
*/
public class JaasAuthenticationHandler extends AbstractUsernamePasswordAuthenticationHandler {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* </p>
*
* @author Scott Battaglia
* @since 3.0
* @since 3.0.0
* <p>
* This is a published and supported CAS Server 3 API.
* </p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
*
* @author William G. Thompson, Jr.
* @author Scott Battaglia
* @since 3.0
* @since 3.0.0
* <p>
* This is a published and supported CAS Server 3 API.
* </p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
* @author Scott Battaglia
@deprecated As of 4.1. No longer required. The default implementation can be used
to delegate calls to the service layer from WS.
* @since 3.0
* @since 3.0.0
*/
@Deprecated
public final class RemoteCentralAuthenticationService implements CentralAuthenticationService {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
* @author Marvin S. Addison
* @author Scott Battaglia
* @author Misagh Moayyed
* @since 3.0
* @since 3.0.0
*/
@Entity
@Inheritance
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* Exception that is thrown when an Unauthorized Service attempts to use CAS.
*
* @author Scott Battaglia
* @since 3.0
* @since 3.0.0
*/
public class UnauthorizedServiceException extends RuntimeException {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
* subclasses should use static Logger instances.
*
* @author Scott Battaglia
* @since 3.0
* @since 3.0.0
*/
@MappedSuperclass
public abstract class AbstractTicket implements Ticket, TicketState {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* Generic ticket exception. Top of the TicketException hierarchy.
*
* @author Scott Battaglia
* @since 3.0
* @since 3.0.0
*/
public abstract class AbstractTicketException extends RootCasException {
private static final long serialVersionUID = -5128676415951733624L;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* This is a published and supported CAS Server 3 API.
* </p>
* @see org.jasig.cas.ticket.Ticket
* @since 3.0
* @since 3.0.0
*/
public interface ExpirationPolicy extends Serializable {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* TicketException to alert that a Ticket was not found or that it is expired.
*
* @author Scott Battaglia
* @since 3.0
* @since 3.0.0
*/
public class InvalidTicketException extends AbstractTicketException {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* use ticket.
*
* @author Scott Battaglia
* @since 3.0
* @since 3.0.0
*/
public interface ServiceTicket extends Ticket {

Expand Down
Loading

0 comments on commit c3e62e9

Please sign in to comment.