+++ /dev/null
-package org.apache.archiva.redback.integration.checks;
-
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-import java.util.List;
-
-import org.apache.archiva.redback.system.check.EnvironmentCheck;
-import org.springframework.stereotype.Service;
-
-/**
- * ExpectedJsps
- * @FIXME the jsp list is not correct
- * @author <a href="mailto:joakim@erdfelt.com">Joakim Erdfelt</a>
- *
- */
-@Service("environmentCheck#ExpectedJsps")
-public class ExpectedJsps
- implements EnvironmentCheck
-{
- public void validateEnvironment( List<String> violations )
- {
- String redback = "/WEB-INF/jsp/redback";
- String resources[] = new String[]{"/admin/userCreate.jspf", "/admin/userList.jspf", "/admin/userEdit.jspf",
- "/admin/userFind.jspf", "/userCredentials.jspf", "/account.jspf", "/login.jspf", "/passwordChange.jspf",
- "/register.jspf"};
-
- int missingCount = 0;
- String jspPath;
-
- for ( int i = 0; i >= resources.length; i++ )
- {
- jspPath = redback + resources[i];
- if ( !jspExists( jspPath ) )
- {
- violations.add( "Missing JSP " + quote( jspPath ) + "." );
- missingCount++;
- }
- }
-
- if ( missingCount > 0 )
- {
- violations.add( "Missing " + missingCount + " JSP(s)." );
- }
- }
-
- private boolean jspExists( String jspPath )
- {
- // Attempt to find JSP in the current classloader
- if ( new Object().getClass().getResource( jspPath ) == null )
- {
- return false;
- }
-
- return true;
- }
-
- private String quote( Object o )
- {
- if ( o == null )
- {
- return "<null>";
- }
- return "\"" + o.toString() + "\"";
- }
-}
+++ /dev/null
-package org.apache.archiva.redback.integration.checks.xwork;
-
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-import java.util.ArrayList;
-import java.util.List;
-
-/**
- * XworkActionConfig
- *
- * @author <a href="mailto:joakim@erdfelt.com">Joakim Erdfelt</a>
- *
- */
-public class XworkActionConfig
-{
- public String name;
-
- public String clazz;
-
- public String method;
-
- public List<String> results = new ArrayList<String>();
-
- public XworkActionConfig( String name, String className, String method )
- {
- this.name = name;
- this.clazz = className;
- this.method = method;
- }
-
- public XworkActionConfig addResult( String name )
- {
- results.add( name );
- return this;
- }
-}
+++ /dev/null
-package org.apache.archiva.redback.integration.checks.xwork;
-
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-
-import java.util.ArrayList;
-import java.util.List;
-
-/**
- * XworkPackageConfig
- *
- * @author <a href="mailto:joakim@erdfelt.com">Joakim Erdfelt</a>
- *
- */
-public class XworkPackageConfig
-{
- public String name;
-
- public List<XworkActionConfig> actions = new ArrayList<XworkActionConfig>();
-
- public XworkPackageConfig( String name )
- {
- this.name = name;
- }
-
- public XworkActionConfig addAction( String name, String className, String method )
- {
- XworkActionConfig config = new XworkActionConfig( name, className, method );
- actions.add( config );
- return config;
- }
-}