Return-Path: Delivered-To: apmail-maven-continuum-commits-archive@www.apache.org Received: (qmail 24314 invoked from network); 8 Jul 2005 21:34:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 8 Jul 2005 21:34:08 -0000 Received: (qmail 63068 invoked by uid 500); 8 Jul 2005 21:33:58 -0000 Delivered-To: apmail-maven-continuum-commits-archive@maven.apache.org Received: (qmail 63041 invoked by uid 500); 8 Jul 2005 21:33:57 -0000 Mailing-List: contact continuum-commits-help@maven.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: continuum-dev@maven.apache.org Delivered-To: mailing list continuum-commits@maven.apache.org Received: (qmail 63028 invoked by uid 99); 8 Jul 2005 21:33:57 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 08 Jul 2005 14:33:46 -0700 Received: (qmail 24182 invoked by uid 65534); 8 Jul 2005 21:33:42 -0000 Message-ID: <20050708213340.24181.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r209895 - in /maven/continuum/trunk/continuum-xfire: ./ src/main/java/org/apache/maven/continuum/xfire/ src/main/resources/META-INF/plexus/ src/main/resources/org/apache/maven/continuum/xfire/ src/test/java/org/apache/maven/continuum/xfire/... Date: Fri, 08 Jul 2005 21:33:16 -0000 To: continuum-commits@maven.apache.org From: evenisse@apache.org X-Mailer: svnmailer-1.0.2 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: evenisse Date: Fri Jul 8 14:33:14 2005 New Revision: 209895 URL: http://svn.apache.org/viewcvs?rev=209895&view=rev Log: Set more svn properties Modified: maven/continuum/trunk/continuum-xfire/pom.xml (props changed) maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/Build.java (contents, props changed) maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/CheckOutScmResult.java (contents, props changed) maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/ContinuumClientFactory.java (contents, props changed) maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/ContinuumWebService.java (contents, props changed) maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/DelegatingContinuumWebService.java (contents, props changed) maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/Developer.java (contents, props changed) maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/Project.java (contents, props changed) maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/UpdateScmResult.java (contents, props changed) maven/continuum/trunk/continuum-xfire/src/main/resources/META-INF/plexus/components.xml (props changed) maven/continuum/trunk/continuum-xfire/src/main/resources/org/apache/maven/continuum/xfire/Build.aegis.xml (props changed) maven/continuum/trunk/continuum-xfire/src/main/resources/org/apache/maven/continuum/xfire/CheckOutScmResult.aegis.xml (props changed) maven/continuum/trunk/continuum-xfire/src/main/resources/org/apache/maven/continuum/xfire/ContinuumWebService.aegis.xml (props changed) maven/continuum/trunk/continuum-xfire/src/main/resources/org/apache/maven/continuum/xfire/Developer.aegis.xml (props changed) maven/continuum/trunk/continuum-xfire/src/main/resources/org/apache/maven/continuum/xfire/Project.aegis.xml (props changed) maven/continuum/trunk/continuum-xfire/src/main/resources/org/apache/maven/continuum/xfire/UpdateScmResult.aegis.xml (props changed) maven/continuum/trunk/continuum-xfire/src/test/java/org/apache/maven/continuum/xfire/ClientTest.java (contents, props changed) maven/continuum/trunk/continuum-xfire/src/test/java/org/apache/maven/continuum/xfire/ContinuumXFireTest.java (contents, props changed) maven/continuum/trunk/continuum-xfire/src/test/resources/log4j.properties (contents, props changed) maven/continuum/trunk/continuum-xfire/src/test/resources/org/apache/maven/continuum/xfire/ContinuumXFireTest.xml (props changed) Propchange: maven/continuum/trunk/continuum-xfire/pom.xml ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Modified: maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/Build.java URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/Build.java?rev=209895&r1=209894&r2=209895&view=diff ============================================================================== --- maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/Build.java (original) +++ maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/Build.java Fri Jul 8 14:33:14 2005 @@ -1,118 +1,118 @@ -package org.apache.maven.continuum.xfire; - -import java.util.Date; - -public class Build -{ - private String id; - private int state; - private boolean forced; - private Date startTime; - private Date endTime; - private String error; - private String standardOutput; - private String standardError; - private int exitCode; - - private UpdateScmResult updateScmResult; - - public Date getEndTime() - { - return endTime; - } - - public void setEndTime(Date endTime) - { - this.endTime = endTime; - } - - public String getError() - { - return error; - } - - public void setError(String error) - { - this.error = error; - } - - public int getExitCode() - { - return exitCode; - } - - public void setExitCode(int exitCode) - { - this.exitCode = exitCode; - } - - public boolean isForced() - { - return forced; - } - - public void setForced(boolean forced) - { - this.forced = forced; - } - - public String getId() - { - return id; - } - - public void setId(String id) - { - this.id = id; - } - - public String getStandardError() - { - return standardError; - } - - public void setStandardError(String standardError) - { - this.standardError = standardError; - } - - public String getStandardOutput() - { - return standardOutput; - } - - public void setStandardOutput(String standardOutput) - { - this.standardOutput = standardOutput; - } - - public Date getStartTime() - { - return startTime; - } - - public void setStartTime(Date startTime) - { - this.startTime = startTime; - } - - public int getState() - { - return state; - } - - public void setState(int state) - { - this.state = state; - } - - public UpdateScmResult getUpdateScmResult() - { - return updateScmResult; - } - - public void setUpdateScmResult(UpdateScmResult updateScmResult) - { - this.updateScmResult = updateScmResult; - } -} +package org.apache.maven.continuum.xfire; + +import java.util.Date; + +public class Build +{ + private String id; + private int state; + private boolean forced; + private Date startTime; + private Date endTime; + private String error; + private String standardOutput; + private String standardError; + private int exitCode; + + private UpdateScmResult updateScmResult; + + public Date getEndTime() + { + return endTime; + } + + public void setEndTime(Date endTime) + { + this.endTime = endTime; + } + + public String getError() + { + return error; + } + + public void setError(String error) + { + this.error = error; + } + + public int getExitCode() + { + return exitCode; + } + + public void setExitCode(int exitCode) + { + this.exitCode = exitCode; + } + + public boolean isForced() + { + return forced; + } + + public void setForced(boolean forced) + { + this.forced = forced; + } + + public String getId() + { + return id; + } + + public void setId(String id) + { + this.id = id; + } + + public String getStandardError() + { + return standardError; + } + + public void setStandardError(String standardError) + { + this.standardError = standardError; + } + + public String getStandardOutput() + { + return standardOutput; + } + + public void setStandardOutput(String standardOutput) + { + this.standardOutput = standardOutput; + } + + public Date getStartTime() + { + return startTime; + } + + public void setStartTime(Date startTime) + { + this.startTime = startTime; + } + + public int getState() + { + return state; + } + + public void setState(int state) + { + this.state = state; + } + + public UpdateScmResult getUpdateScmResult() + { + return updateScmResult; + } + + public void setUpdateScmResult(UpdateScmResult updateScmResult) + { + this.updateScmResult = updateScmResult; + } +} Propchange: maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/Build.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/Build.java ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Modified: maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/CheckOutScmResult.java URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/CheckOutScmResult.java?rev=209895&r1=209894&r2=209895&view=diff ============================================================================== --- maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/CheckOutScmResult.java (original) +++ maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/CheckOutScmResult.java Fri Jul 8 14:33:14 2005 @@ -1,59 +1,59 @@ -package org.apache.maven.continuum.xfire; - -/* - * Copyright 2004-2005 The Apache Software Foundation. - * - * Licensed 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; - -public class CheckOutScmResult -{ - private List checkedOutFiles; - private boolean success; - private String providerMessage; - private String commandOutput; - - public List getCheckedOutFiles() - { - return checkedOutFiles; - } - public void setCheckedOutFiles(List checkedOutFiles) - { - this.checkedOutFiles = checkedOutFiles; - } - public String getCommandOutput() - { - return commandOutput; - } - public void setCommandOutput(String commandOutput) - { - this.commandOutput = commandOutput; - } - public String getProviderMessage() - { - return providerMessage; - } - public void setProviderMessage(String providerMessage) - { - this.providerMessage = providerMessage; - } - public boolean isSuccess() - { - return success; - } - public void setSuccess(boolean success) - { - this.success = success; - } -} +package org.apache.maven.continuum.xfire; + +/* + * Copyright 2004-2005 The Apache Software Foundation. + * + * Licensed 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; + +public class CheckOutScmResult +{ + private List checkedOutFiles; + private boolean success; + private String providerMessage; + private String commandOutput; + + public List getCheckedOutFiles() + { + return checkedOutFiles; + } + public void setCheckedOutFiles(List checkedOutFiles) + { + this.checkedOutFiles = checkedOutFiles; + } + public String getCommandOutput() + { + return commandOutput; + } + public void setCommandOutput(String commandOutput) + { + this.commandOutput = commandOutput; + } + public String getProviderMessage() + { + return providerMessage; + } + public void setProviderMessage(String providerMessage) + { + this.providerMessage = providerMessage; + } + public boolean isSuccess() + { + return success; + } + public void setSuccess(boolean success) + { + this.success = success; + } +} Propchange: maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/CheckOutScmResult.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/CheckOutScmResult.java ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Modified: maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/ContinuumClientFactory.java URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/ContinuumClientFactory.java?rev=209895&r1=209894&r2=209895&view=diff ============================================================================== --- maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/ContinuumClientFactory.java (original) +++ maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/ContinuumClientFactory.java Fri Jul 8 14:33:14 2005 @@ -1,40 +1,40 @@ -package org.apache.maven.continuum.xfire; - -/* - * Copyright 2004-2005 The Apache Software Foundation. - * - * Licensed 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.net.MalformedURLException; - -import org.codehaus.xfire.annotations.AnnotationServiceFactory; -import org.codehaus.xfire.annotations.commons.CommonsWebAttributes; -import org.codehaus.xfire.client.XFireProxyFactory; -import org.codehaus.xfire.service.Service; -import org.codehaus.xfire.transport.http.SoapHttpTransport; - -public class ContinuumClientFactory -{ - public static ContinuumWebService createClient(String url) - throws MalformedURLException - { - AnnotationServiceFactory asf = new AnnotationServiceFactory(new CommonsWebAttributes(), null, null); - - Service clientService = asf.create(ContinuumWebService.class); - - SoapHttpTransport transport = new SoapHttpTransport(); - - XFireProxyFactory proxy = new XFireProxyFactory(); - return (ContinuumWebService) proxy.create(transport, clientService, url); - } -} +package org.apache.maven.continuum.xfire; + +/* + * Copyright 2004-2005 The Apache Software Foundation. + * + * Licensed 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.net.MalformedURLException; + +import org.codehaus.xfire.annotations.AnnotationServiceFactory; +import org.codehaus.xfire.annotations.commons.CommonsWebAttributes; +import org.codehaus.xfire.client.XFireProxyFactory; +import org.codehaus.xfire.service.Service; +import org.codehaus.xfire.transport.http.SoapHttpTransport; + +public class ContinuumClientFactory +{ + public static ContinuumWebService createClient(String url) + throws MalformedURLException + { + AnnotationServiceFactory asf = new AnnotationServiceFactory(new CommonsWebAttributes(), null, null); + + Service clientService = asf.create(ContinuumWebService.class); + + SoapHttpTransport transport = new SoapHttpTransport(); + + XFireProxyFactory proxy = new XFireProxyFactory(); + return (ContinuumWebService) proxy.create(transport, clientService, url); + } +} Propchange: maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/ContinuumClientFactory.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/ContinuumClientFactory.java ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Modified: maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/ContinuumWebService.java URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/ContinuumWebService.java?rev=209895&r1=209894&r2=209895&view=diff ============================================================================== --- maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/ContinuumWebService.java (original) +++ maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/ContinuumWebService.java Fri Jul 8 14:33:14 2005 @@ -1,102 +1,102 @@ -package org.apache.maven.continuum.xfire; - -/* - * Copyright 2004-2005 The Apache Software Foundation. - * - * Licensed 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.Collection; - -import org.codehaus.xfire.fault.XFireFault; - -import org.codehaus.xfire.annotations.commons.*; - -/** - * @@WebService(name = "Continuum", targetNamespace = "http://continuum.maven.apache.org") - */ -public interface ContinuumWebService -{ - String ROLE = ContinuumWebService.class.getName(); - - /** - * @@WebMethod() - * @@.projectId WebParam("ProjectId") - * @@.return WebResult("Project") - */ - Project getProject(String projectId) throws XFireFault; - - /** - * @@WebMethod() - * @@.projectInfo WebParam("Project") - */ - void updateProject(Project projectInfo) throws XFireFault; - - /** - * @@WebMethod() - * @@.project WebParam("Project") - * @@.return WebResult("ProjectId") - */ - String addProject(Project project) throws XFireFault; - - /** - * @@WebMethod() - * @@.projectId WebParam("ProjectId") - * @@.return WebResult("Builds") - */ - Collection getBuilds(String projectId) throws XFireFault; - - /** - * @@WebMethod() - * @@.return WebResult("Projects") - */ - Collection getProjects() throws XFireFault; - - /** - * @@WebMethod() - * @throws XFireFault - * @@.projectId WebParam("ProjectId") - * @@.return WebResult("Build") - */ - Build getLatestBuild( String projectId ) throws XFireFault; - - /** - * @@WebMethod() - * @@.projectId WebParam("ProjectId") - */ - void removeProject( String projectId ) - throws XFireFault; - - /** - * @@WebMethod() - * @@.projectId WebParam("ProjectId") - * @@.force WebResult("Force") - */ - void buildProject( String projectId, boolean force ) - throws XFireFault; - - /** - * @@WebMethod() - * @@.id WebParam("ProjectId") - */ - void checkoutProject( String id ) - throws XFireFault; - - /** - * @@WebMethod() - * @@.projectId WebParam("ProjectId") - * @@.return WebResult(name="CheckOutScmResult", targetNamespace="http://continuum.maven.apache.org") - */ - CheckOutScmResult getCheckOutScmResult( String projectId ) - throws XFireFault; - -} +package org.apache.maven.continuum.xfire; + +/* + * Copyright 2004-2005 The Apache Software Foundation. + * + * Licensed 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.Collection; + +import org.codehaus.xfire.fault.XFireFault; + +import org.codehaus.xfire.annotations.commons.*; + +/** + * @@WebService(name = "Continuum", targetNamespace = "http://continuum.maven.apache.org") + */ +public interface ContinuumWebService +{ + String ROLE = ContinuumWebService.class.getName(); + + /** + * @@WebMethod() + * @@.projectId WebParam("ProjectId") + * @@.return WebResult("Project") + */ + Project getProject(String projectId) throws XFireFault; + + /** + * @@WebMethod() + * @@.projectInfo WebParam("Project") + */ + void updateProject(Project projectInfo) throws XFireFault; + + /** + * @@WebMethod() + * @@.project WebParam("Project") + * @@.return WebResult("ProjectId") + */ + String addProject(Project project) throws XFireFault; + + /** + * @@WebMethod() + * @@.projectId WebParam("ProjectId") + * @@.return WebResult("Builds") + */ + Collection getBuilds(String projectId) throws XFireFault; + + /** + * @@WebMethod() + * @@.return WebResult("Projects") + */ + Collection getProjects() throws XFireFault; + + /** + * @@WebMethod() + * @throws XFireFault + * @@.projectId WebParam("ProjectId") + * @@.return WebResult("Build") + */ + Build getLatestBuild( String projectId ) throws XFireFault; + + /** + * @@WebMethod() + * @@.projectId WebParam("ProjectId") + */ + void removeProject( String projectId ) + throws XFireFault; + + /** + * @@WebMethod() + * @@.projectId WebParam("ProjectId") + * @@.force WebResult("Force") + */ + void buildProject( String projectId, boolean force ) + throws XFireFault; + + /** + * @@WebMethod() + * @@.id WebParam("ProjectId") + */ + void checkoutProject( String id ) + throws XFireFault; + + /** + * @@WebMethod() + * @@.projectId WebParam("ProjectId") + * @@.return WebResult(name="CheckOutScmResult", targetNamespace="http://continuum.maven.apache.org") + */ + CheckOutScmResult getCheckOutScmResult( String projectId ) + throws XFireFault; + +} Propchange: maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/ContinuumWebService.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/ContinuumWebService.java ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Modified: maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/DelegatingContinuumWebService.java URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/DelegatingContinuumWebService.java?rev=209895&r1=209894&r2=209895&view=diff ============================================================================== --- maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/DelegatingContinuumWebService.java (original) +++ maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/DelegatingContinuumWebService.java Fri Jul 8 14:33:14 2005 @@ -1,363 +1,363 @@ -package org.apache.maven.continuum.xfire; - -/* - * Copyright 2004-2005 The Apache Software Foundation. - * - * Licensed 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.Collection; -import java.util.Date; -import java.util.Iterator; -import java.util.List; - -import org.apache.maven.continuum.Continuum; -import org.apache.maven.continuum.ContinuumException; -import org.apache.maven.continuum.project.AntProject; -import org.apache.maven.continuum.project.ContinuumBuild; -import org.apache.maven.continuum.project.ContinuumProject; -import org.apache.maven.continuum.project.MavenOneProject; -import org.apache.maven.continuum.project.MavenTwoProject; -import org.apache.maven.continuum.project.ShellProject; -import org.apache.maven.continuum.scm.ScmFile; -import org.codehaus.xfire.fault.XFireFault; - -public class DelegatingContinuumWebService - implements ContinuumWebService -{ - Continuum continuum; - - public void checkoutProject(String id) - throws XFireFault - { - try - { - continuum.checkoutProject(id); - } - catch (ContinuumException e) - { - throw new XFireFault(e.getCause()); - } - } - - public String addProject(Project projectInfo) - throws XFireFault - { - try - { - if (projectInfo.getType().equals("maven-one")) - { - MavenOneProject project = new MavenOneProject(); - project.setGoals(projectInfo.getGoals()); - - convertToLocal(projectInfo, project); - - return continuum.addMavenOneProject(project); - } - else if (projectInfo.getType().equals("maven-two")) - { - MavenTwoProject project = new MavenTwoProject(); - project.setGoals(projectInfo.getGoals()); - - convertToLocal(projectInfo, project); - - return continuum.addMavenTwoProject(project); - } - else if (projectInfo.getType().equals("shell")) - { - ShellProject project = new ShellProject(); - project.setExecutable(projectInfo.getExecutable()); - - convertToLocal(projectInfo, project); - - return continuum.addShellProject(project); - } - else if (projectInfo.getType().equals("ant")) - { - AntProject project = new AntProject(); - project.setExecutable(projectInfo.getExecutable()); - project.setTargets(projectInfo.getTargets()); - - convertToLocal(projectInfo, project); - - return continuum.addAntProject(project); - } - else - { - throw new XFireFault("Invalid project type: " + projectInfo.getType() + - ". Must be maven-one, maven-two, shell, or ant.", - XFireFault.SENDER); - } - } - catch (Throwable e) - { - e.printStackTrace(); - throw new XFireFault(e); - } - } - - private void convertToLocal(Project info, ContinuumProject project) - throws XFireFault - { - project.setName(info.getName()); - project.setVersion(info.getVersion()); - project.setScmUrl(info.getScmUrl()); - project.setUrl(info.getUrl()); - } - - public void buildProject(String projectId, boolean force) - throws XFireFault - { - try - { - continuum.buildProject(projectId, force); - } - catch (ContinuumException e) - { - throw new XFireFault(e); - } - } - - public Collection getBuilds(String projectId) throws XFireFault - { - try - { - Collection localBuilds = continuum.getBuildsForProject(projectId); - ArrayList builds = new ArrayList(); - - for (Iterator itr = localBuilds.iterator(); itr.hasNext();) - { - builds.add(convertToRemote((ContinuumBuild) itr.next())); - } - - return builds; - } - catch (ContinuumException e) - { - throw new XFireFault(e); - } - } - - - public CheckOutScmResult getCheckOutScmResult(String projectId) - throws XFireFault - { - try - { - org.apache.maven.continuum.scm.CheckOutScmResult localCSR = - continuum.getCheckOutScmResultForProject(projectId); - - if (localCSR == null) return null; - - return convertToRemote(localCSR); - } - catch (ContinuumException e) - { - throw new XFireFault(e); - } - } - - private CheckOutScmResult convertToRemote(org.apache.maven.continuum.scm.CheckOutScmResult localUSR) - { - CheckOutScmResult result = new CheckOutScmResult(); - result.setCommandOutput(localUSR.getCommandOutput()); - result.setProviderMessage(localUSR.getProviderMessage()); - result.setSuccess(localUSR.isSuccess()); - - ArrayList files = new ArrayList(); - for (Iterator itr = localUSR.getCheckedOutFiles().iterator(); itr.hasNext();) - { - ScmFile file = (ScmFile) itr.next(); - files.add(file.getPath()); - } - result.setCheckedOutFiles(files); - - return result; - } - - public Build getLatestBuild(String projectId) throws XFireFault - { - try - { - ContinuumBuild build = continuum.getLatestBuildForProject(projectId); - - return convertToRemote(build); - } - catch (ContinuumException e) - { - throw new XFireFault(e); - } - } - - - private Build convertToRemote(ContinuumBuild build) - { - Build remBuild = new Build(); - remBuild.setEndTime(new Date(build.getEndTime())); - remBuild.setStartTime(new Date(build.getStartTime())); - remBuild.setError(build.getError()); - remBuild.setExitCode(build.getExitCode()); - remBuild.setForced(build.isForced()); - remBuild.setId(build.getId()); - remBuild.setStandardError(build.getStandardError()); - remBuild.setStandardOutput(build.getStandardOutput()); - remBuild.setState(build.getState()); - remBuild.setUpdateScmResult(convertToRemote(build.getUpdateScmResult())); - return remBuild; - } - - private UpdateScmResult convertToRemote(org.apache.maven.continuum.scm.UpdateScmResult localUSR) - { - UpdateScmResult result = new UpdateScmResult(); - result.setCommandOutput(localUSR.getCommandOutput()); - result.setProviderMessage(localUSR.getProviderMessage()); - result.setSuccess(localUSR.isSuccess()); - - ArrayList files = new ArrayList(); - for (Iterator itr = localUSR.getUpdatedFiles().iterator(); itr.hasNext();) - { - ScmFile file = (ScmFile) itr.next(); - files.add(file.getPath()); - } - result.setUpdatedFiles(files); - - return result; - } - - public Project getProject(String projectId) - throws XFireFault - { - try - { - ContinuumProject project = continuum.getProject(projectId); - return createProjectInfo(project); - } - catch (ContinuumException e) - { - throw new XFireFault(e); - } - } - - private Project createProjectInfo(ContinuumProject project) - throws XFireFault - { - Project projectInfo = new Project(); - projectInfo.setId(project.getId()); - - convertToProjectInfo(project, projectInfo); - - return projectInfo; - } - - private void convertToProjectInfo(ContinuumProject project, Project projectInfo) - throws XFireFault - { - if (project instanceof MavenOneProject) - { - projectInfo.setGoals(((MavenOneProject)project).getGoals()); - projectInfo.setType("maven-one"); - } - else if (project instanceof MavenTwoProject) - { - projectInfo.setGoals(((MavenTwoProject)project).getGoals()); - projectInfo.setType("maven-two"); - } - else if (project instanceof ShellProject) - { - projectInfo.setExecutable(((ShellProject)project).getExecutable()); - projectInfo.setType("shell"); - } - else if (project instanceof AntProject) - { - projectInfo.setExecutable(((AntProject)project).getExecutable()); - projectInfo.setTargets(((AntProject)project).getTargets()); - projectInfo.setType("ant"); - } - else - { - throw new XFireFault("Invalid project type for id " + project.getId(), - XFireFault.SENDER); - } - - projectInfo.setName(project.getName()); - projectInfo.setVersion(project.getVersion()); - projectInfo.setScmUrl(project.getScmUrl()); - projectInfo.setUrl(project.getUrl()); - } - - public Collection getProjects() throws XFireFault - { - try - { - Collection projects = continuum.getProjects(); - - List infos = new ArrayList(); - for (Iterator itr = projects.iterator(); itr.hasNext();) - { - infos.add(createProjectInfo((ContinuumProject) itr.next())); - } - return infos; - } - catch (ContinuumException e) - { - throw new XFireFault(e); - } - } - - - public void removeProject(String projectId) - throws XFireFault - { - try - { - continuum.removeProject(projectId); - } - catch (ContinuumException e) - { - throw new XFireFault(e); - } - } - - - public void updateProject(Project projectInfo) - throws XFireFault - { - try - { - ContinuumProject project = continuum.getProject(projectInfo.getId()); - - convertToLocal(projectInfo, project); - - if (project instanceof MavenOneProject) - { - continuum.updateMavenOneProject((MavenOneProject)project); - } - else if (project instanceof MavenTwoProject) - { - continuum.updateMavenTwoProject((MavenTwoProject)project); - } - else if (project instanceof ShellProject) - { - continuum.updateShellProject((ShellProject)project); - } - else if (project instanceof AntProject) - { - continuum.updateAntProject((AntProject)project); - } - } - catch (ContinuumException e) - { - throw new XFireFault(e); - } - } -} +package org.apache.maven.continuum.xfire; + +/* + * Copyright 2004-2005 The Apache Software Foundation. + * + * Licensed 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.Collection; +import java.util.Date; +import java.util.Iterator; +import java.util.List; + +import org.apache.maven.continuum.Continuum; +import org.apache.maven.continuum.ContinuumException; +import org.apache.maven.continuum.project.AntProject; +import org.apache.maven.continuum.project.ContinuumBuild; +import org.apache.maven.continuum.project.ContinuumProject; +import org.apache.maven.continuum.project.MavenOneProject; +import org.apache.maven.continuum.project.MavenTwoProject; +import org.apache.maven.continuum.project.ShellProject; +import org.apache.maven.continuum.scm.ScmFile; +import org.codehaus.xfire.fault.XFireFault; + +public class DelegatingContinuumWebService + implements ContinuumWebService +{ + Continuum continuum; + + public void checkoutProject(String id) + throws XFireFault + { + try + { + continuum.checkoutProject(id); + } + catch (ContinuumException e) + { + throw new XFireFault(e.getCause()); + } + } + + public String addProject(Project projectInfo) + throws XFireFault + { + try + { + if (projectInfo.getType().equals("maven-one")) + { + MavenOneProject project = new MavenOneProject(); + project.setGoals(projectInfo.getGoals()); + + convertToLocal(projectInfo, project); + + return continuum.addMavenOneProject(project); + } + else if (projectInfo.getType().equals("maven-two")) + { + MavenTwoProject project = new MavenTwoProject(); + project.setGoals(projectInfo.getGoals()); + + convertToLocal(projectInfo, project); + + return continuum.addMavenTwoProject(project); + } + else if (projectInfo.getType().equals("shell")) + { + ShellProject project = new ShellProject(); + project.setExecutable(projectInfo.getExecutable()); + + convertToLocal(projectInfo, project); + + return continuum.addShellProject(project); + } + else if (projectInfo.getType().equals("ant")) + { + AntProject project = new AntProject(); + project.setExecutable(projectInfo.getExecutable()); + project.setTargets(projectInfo.getTargets()); + + convertToLocal(projectInfo, project); + + return continuum.addAntProject(project); + } + else + { + throw new XFireFault("Invalid project type: " + projectInfo.getType() + + ". Must be maven-one, maven-two, shell, or ant.", + XFireFault.SENDER); + } + } + catch (Throwable e) + { + e.printStackTrace(); + throw new XFireFault(e); + } + } + + private void convertToLocal(Project info, ContinuumProject project) + throws XFireFault + { + project.setName(info.getName()); + project.setVersion(info.getVersion()); + project.setScmUrl(info.getScmUrl()); + project.setUrl(info.getUrl()); + } + + public void buildProject(String projectId, boolean force) + throws XFireFault + { + try + { + continuum.buildProject(projectId, force); + } + catch (ContinuumException e) + { + throw new XFireFault(e); + } + } + + public Collection getBuilds(String projectId) throws XFireFault + { + try + { + Collection localBuilds = continuum.getBuildsForProject(projectId); + ArrayList builds = new ArrayList(); + + for (Iterator itr = localBuilds.iterator(); itr.hasNext();) + { + builds.add(convertToRemote((ContinuumBuild) itr.next())); + } + + return builds; + } + catch (ContinuumException e) + { + throw new XFireFault(e); + } + } + + + public CheckOutScmResult getCheckOutScmResult(String projectId) + throws XFireFault + { + try + { + org.apache.maven.continuum.scm.CheckOutScmResult localCSR = + continuum.getCheckOutScmResultForProject(projectId); + + if (localCSR == null) return null; + + return convertToRemote(localCSR); + } + catch (ContinuumException e) + { + throw new XFireFault(e); + } + } + + private CheckOutScmResult convertToRemote(org.apache.maven.continuum.scm.CheckOutScmResult localUSR) + { + CheckOutScmResult result = new CheckOutScmResult(); + result.setCommandOutput(localUSR.getCommandOutput()); + result.setProviderMessage(localUSR.getProviderMessage()); + result.setSuccess(localUSR.isSuccess()); + + ArrayList files = new ArrayList(); + for (Iterator itr = localUSR.getCheckedOutFiles().iterator(); itr.hasNext();) + { + ScmFile file = (ScmFile) itr.next(); + files.add(file.getPath()); + } + result.setCheckedOutFiles(files); + + return result; + } + + public Build getLatestBuild(String projectId) throws XFireFault + { + try + { + ContinuumBuild build = continuum.getLatestBuildForProject(projectId); + + return convertToRemote(build); + } + catch (ContinuumException e) + { + throw new XFireFault(e); + } + } + + + private Build convertToRemote(ContinuumBuild build) + { + Build remBuild = new Build(); + remBuild.setEndTime(new Date(build.getEndTime())); + remBuild.setStartTime(new Date(build.getStartTime())); + remBuild.setError(build.getError()); + remBuild.setExitCode(build.getExitCode()); + remBuild.setForced(build.isForced()); + remBuild.setId(build.getId()); + remBuild.setStandardError(build.getStandardError()); + remBuild.setStandardOutput(build.getStandardOutput()); + remBuild.setState(build.getState()); + remBuild.setUpdateScmResult(convertToRemote(build.getUpdateScmResult())); + return remBuild; + } + + private UpdateScmResult convertToRemote(org.apache.maven.continuum.scm.UpdateScmResult localUSR) + { + UpdateScmResult result = new UpdateScmResult(); + result.setCommandOutput(localUSR.getCommandOutput()); + result.setProviderMessage(localUSR.getProviderMessage()); + result.setSuccess(localUSR.isSuccess()); + + ArrayList files = new ArrayList(); + for (Iterator itr = localUSR.getUpdatedFiles().iterator(); itr.hasNext();) + { + ScmFile file = (ScmFile) itr.next(); + files.add(file.getPath()); + } + result.setUpdatedFiles(files); + + return result; + } + + public Project getProject(String projectId) + throws XFireFault + { + try + { + ContinuumProject project = continuum.getProject(projectId); + return createProjectInfo(project); + } + catch (ContinuumException e) + { + throw new XFireFault(e); + } + } + + private Project createProjectInfo(ContinuumProject project) + throws XFireFault + { + Project projectInfo = new Project(); + projectInfo.setId(project.getId()); + + convertToProjectInfo(project, projectInfo); + + return projectInfo; + } + + private void convertToProjectInfo(ContinuumProject project, Project projectInfo) + throws XFireFault + { + if (project instanceof MavenOneProject) + { + projectInfo.setGoals(((MavenOneProject)project).getGoals()); + projectInfo.setType("maven-one"); + } + else if (project instanceof MavenTwoProject) + { + projectInfo.setGoals(((MavenTwoProject)project).getGoals()); + projectInfo.setType("maven-two"); + } + else if (project instanceof ShellProject) + { + projectInfo.setExecutable(((ShellProject)project).getExecutable()); + projectInfo.setType("shell"); + } + else if (project instanceof AntProject) + { + projectInfo.setExecutable(((AntProject)project).getExecutable()); + projectInfo.setTargets(((AntProject)project).getTargets()); + projectInfo.setType("ant"); + } + else + { + throw new XFireFault("Invalid project type for id " + project.getId(), + XFireFault.SENDER); + } + + projectInfo.setName(project.getName()); + projectInfo.setVersion(project.getVersion()); + projectInfo.setScmUrl(project.getScmUrl()); + projectInfo.setUrl(project.getUrl()); + } + + public Collection getProjects() throws XFireFault + { + try + { + Collection projects = continuum.getProjects(); + + List infos = new ArrayList(); + for (Iterator itr = projects.iterator(); itr.hasNext();) + { + infos.add(createProjectInfo((ContinuumProject) itr.next())); + } + return infos; + } + catch (ContinuumException e) + { + throw new XFireFault(e); + } + } + + + public void removeProject(String projectId) + throws XFireFault + { + try + { + continuum.removeProject(projectId); + } + catch (ContinuumException e) + { + throw new XFireFault(e); + } + } + + + public void updateProject(Project projectInfo) + throws XFireFault + { + try + { + ContinuumProject project = continuum.getProject(projectInfo.getId()); + + convertToLocal(projectInfo, project); + + if (project instanceof MavenOneProject) + { + continuum.updateMavenOneProject((MavenOneProject)project); + } + else if (project instanceof MavenTwoProject) + { + continuum.updateMavenTwoProject((MavenTwoProject)project); + } + else if (project instanceof ShellProject) + { + continuum.updateShellProject((ShellProject)project); + } + else if (project instanceof AntProject) + { + continuum.updateAntProject((AntProject)project); + } + } + catch (ContinuumException e) + { + throw new XFireFault(e); + } + } +} Propchange: maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/DelegatingContinuumWebService.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/DelegatingContinuumWebService.java ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Modified: maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/Developer.java URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/Developer.java?rev=209895&r1=209894&r2=209895&view=diff ============================================================================== --- maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/Developer.java (original) +++ maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/Developer.java Fri Jul 8 14:33:14 2005 @@ -1,39 +1,39 @@ -package org.apache.maven.continuum.xfire; - -/* - * Copyright 2004-2005 The Apache Software Foundation. - * - * Licensed 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. - */ -public class Developer -{ - private String name; - private String email; - - public String getEmail() - { - return email; - } - public void setEmail(String email) - { - this.email = email; - } - public String getName() - { - return name; - } - public void setName(String name) - { - this.name = name; - } -} +package org.apache.maven.continuum.xfire; + +/* + * Copyright 2004-2005 The Apache Software Foundation. + * + * Licensed 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. + */ +public class Developer +{ + private String name; + private String email; + + public String getEmail() + { + return email; + } + public void setEmail(String email) + { + this.email = email; + } + public String getName() + { + return name; + } + public void setName(String name) + { + this.name = name; + } +} Propchange: maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/Developer.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/Developer.java ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Modified: maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/Project.java URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/Project.java?rev=209895&r1=209894&r2=209895&view=diff ============================================================================== --- maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/Project.java (original) +++ maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/Project.java Fri Jul 8 14:33:14 2005 @@ -1,115 +1,115 @@ -package org.apache.maven.continuum.xfire; - -/* - * Copyright 2004-2005 The Apache Software Foundation. - * - * Licensed 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; - -public class Project -{ - private String name; - private String version; - private List developers; - // private List notifiers; - private String scmUrl; - private String url; - private String id; - private String type; - - private String executable; - private String targets; - private String goals; - - public String getUrl() - { - return url; - } - public void setUrl(String url) - { - this.url = url; - } - public String getExecutable() - { - return executable; - } - public void setExecutable(String executable) - { - this.executable = executable; - } - public String getGoals() - { - return goals; - } - public void setGoals(String goals) - { - this.goals = goals; - } - public String getTargets() - { - return targets; - } - public void setTargets(String targets) - { - this.targets = targets; - } - public String getId() - { - return id; - } - public void setId(String id) - { - this.id = id; - } - public String getType() - { - return type; - } - public void setType(String type) - { - this.type = type; - } - public String getName() - { - return name; - } - public void setName(String name) - { - this.name = name; - } - public List getDevelopers() - { - return developers; - } - public void setDevelopers(List developers) - { - this.developers = developers; - } - public String getScmUrl() - { - return scmUrl; - } - public void setScmUrl(String scmUrl) - { - this.scmUrl = scmUrl; - } - public String getVersion() - { - return version; - } - public void setVersion(String version) - { - this.version = version; - } -} +package org.apache.maven.continuum.xfire; + +/* + * Copyright 2004-2005 The Apache Software Foundation. + * + * Licensed 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; + +public class Project +{ + private String name; + private String version; + private List developers; + // private List notifiers; + private String scmUrl; + private String url; + private String id; + private String type; + + private String executable; + private String targets; + private String goals; + + public String getUrl() + { + return url; + } + public void setUrl(String url) + { + this.url = url; + } + public String getExecutable() + { + return executable; + } + public void setExecutable(String executable) + { + this.executable = executable; + } + public String getGoals() + { + return goals; + } + public void setGoals(String goals) + { + this.goals = goals; + } + public String getTargets() + { + return targets; + } + public void setTargets(String targets) + { + this.targets = targets; + } + public String getId() + { + return id; + } + public void setId(String id) + { + this.id = id; + } + public String getType() + { + return type; + } + public void setType(String type) + { + this.type = type; + } + public String getName() + { + return name; + } + public void setName(String name) + { + this.name = name; + } + public List getDevelopers() + { + return developers; + } + public void setDevelopers(List developers) + { + this.developers = developers; + } + public String getScmUrl() + { + return scmUrl; + } + public void setScmUrl(String scmUrl) + { + this.scmUrl = scmUrl; + } + public String getVersion() + { + return version; + } + public void setVersion(String version) + { + this.version = version; + } +} Propchange: maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/Project.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/Project.java ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Modified: maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/UpdateScmResult.java URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/UpdateScmResult.java?rev=209895&r1=209894&r2=209895&view=diff ============================================================================== --- maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/UpdateScmResult.java (original) +++ maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/UpdateScmResult.java Fri Jul 8 14:33:14 2005 @@ -1,59 +1,59 @@ -package org.apache.maven.continuum.xfire; - -/* - * Copyright 2004-2005 The Apache Software Foundation. - * - * Licensed 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; - -public class UpdateScmResult -{ - private List updatedFiles; - private boolean success; - private String providerMessage; - private String commandOutput; - - public List getUpdatedFiles() - { - return updatedFiles; - } - public void setUpdatedFiles(List updatedFiles) - { - this.updatedFiles = updatedFiles; - } - public String getCommandOutput() - { - return commandOutput; - } - public void setCommandOutput(String commandOutput) - { - this.commandOutput = commandOutput; - } - public String getProviderMessage() - { - return providerMessage; - } - public void setProviderMessage(String providerMessage) - { - this.providerMessage = providerMessage; - } - public boolean isSuccess() - { - return success; - } - public void setSuccess(boolean success) - { - this.success = success; - } -} +package org.apache.maven.continuum.xfire; + +/* + * Copyright 2004-2005 The Apache Software Foundation. + * + * Licensed 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; + +public class UpdateScmResult +{ + private List updatedFiles; + private boolean success; + private String providerMessage; + private String commandOutput; + + public List getUpdatedFiles() + { + return updatedFiles; + } + public void setUpdatedFiles(List updatedFiles) + { + this.updatedFiles = updatedFiles; + } + public String getCommandOutput() + { + return commandOutput; + } + public void setCommandOutput(String commandOutput) + { + this.commandOutput = commandOutput; + } + public String getProviderMessage() + { + return providerMessage; + } + public void setProviderMessage(String providerMessage) + { + this.providerMessage = providerMessage; + } + public boolean isSuccess() + { + return success; + } + public void setSuccess(boolean success) + { + this.success = success; + } +} Propchange: maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/UpdateScmResult.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/continuum/trunk/continuum-xfire/src/main/java/org/apache/maven/continuum/xfire/UpdateScmResult.java ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Propchange: maven/continuum/trunk/continuum-xfire/src/main/resources/META-INF/plexus/components.xml ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Propchange: maven/continuum/trunk/continuum-xfire/src/main/resources/org/apache/maven/continuum/xfire/Build.aegis.xml ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Propchange: maven/continuum/trunk/continuum-xfire/src/main/resources/org/apache/maven/continuum/xfire/CheckOutScmResult.aegis.xml ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Propchange: maven/continuum/trunk/continuum-xfire/src/main/resources/org/apache/maven/continuum/xfire/ContinuumWebService.aegis.xml ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Propchange: maven/continuum/trunk/continuum-xfire/src/main/resources/org/apache/maven/continuum/xfire/Developer.aegis.xml ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Propchange: maven/continuum/trunk/continuum-xfire/src/main/resources/org/apache/maven/continuum/xfire/Project.aegis.xml ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Propchange: maven/continuum/trunk/continuum-xfire/src/main/resources/org/apache/maven/continuum/xfire/UpdateScmResult.aegis.xml ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Modified: maven/continuum/trunk/continuum-xfire/src/test/java/org/apache/maven/continuum/xfire/ClientTest.java URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/continuum-xfire/src/test/java/org/apache/maven/continuum/xfire/ClientTest.java?rev=209895&r1=209894&r2=209895&view=diff ============================================================================== --- maven/continuum/trunk/continuum-xfire/src/test/java/org/apache/maven/continuum/xfire/ClientTest.java (original) +++ maven/continuum/trunk/continuum-xfire/src/test/java/org/apache/maven/continuum/xfire/ClientTest.java Fri Jul 8 14:33:14 2005 @@ -31,7 +31,7 @@ /** * @author Trygve Laugstøl - * @version $Id: XmlRpcHelperTest.java,v 1.1.1.1 2005/03/29 20:42:10 trygvis Exp $ + * @version $Id$ */ public class ClientTest extends PlexusXFireTest Propchange: maven/continuum/trunk/continuum-xfire/src/test/java/org/apache/maven/continuum/xfire/ClientTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/continuum/trunk/continuum-xfire/src/test/java/org/apache/maven/continuum/xfire/ClientTest.java ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Modified: maven/continuum/trunk/continuum-xfire/src/test/java/org/apache/maven/continuum/xfire/ContinuumXFireTest.java URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/continuum-xfire/src/test/java/org/apache/maven/continuum/xfire/ContinuumXFireTest.java?rev=209895&r1=209894&r2=209895&view=diff ============================================================================== --- maven/continuum/trunk/continuum-xfire/src/test/java/org/apache/maven/continuum/xfire/ContinuumXFireTest.java (original) +++ maven/continuum/trunk/continuum-xfire/src/test/java/org/apache/maven/continuum/xfire/ContinuumXFireTest.java Fri Jul 8 14:33:14 2005 @@ -33,7 +33,7 @@ /** * @author Trygve Laugstøl - * @version $Id: XmlRpcHelperTest.java,v 1.1.1.1 2005/03/29 20:42:10 trygvis Exp $ + * @version $Id$ */ public class ContinuumXFireTest extends PlexusXFireTest Propchange: maven/continuum/trunk/continuum-xfire/src/test/java/org/apache/maven/continuum/xfire/ContinuumXFireTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/continuum/trunk/continuum-xfire/src/test/java/org/apache/maven/continuum/xfire/ContinuumXFireTest.java ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Modified: maven/continuum/trunk/continuum-xfire/src/test/resources/log4j.properties URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/continuum-xfire/src/test/resources/log4j.properties?rev=209895&r1=209894&r2=209895&view=diff ============================================================================== --- maven/continuum/trunk/continuum-xfire/src/test/resources/log4j.properties (original) +++ maven/continuum/trunk/continuum-xfire/src/test/resources/log4j.properties Fri Jul 8 14:33:14 2005 @@ -1,9 +1,9 @@ -# Set root logger level to DEBUG and its only appender to A1. -log4j.rootLogger=WARN, A1 - -# A1 is set to be a ConsoleAppender. -log4j.appender.A1=org.apache.log4j.ConsoleAppender - -# A1 uses PatternLayout. -log4j.appender.A1.layout=org.apache.log4j.PatternLayout +# Set root logger level to DEBUG and its only appender to A1. +log4j.rootLogger=WARN, A1 + +# A1 is set to be a ConsoleAppender. +log4j.appender.A1=org.apache.log4j.ConsoleAppender + +# A1 uses PatternLayout. +log4j.appender.A1.layout=org.apache.log4j.PatternLayout log4j.appender.A1.layout.ConversionPattern=%-4r [%t] %-5p %c %x - %m%n Propchange: maven/continuum/trunk/continuum-xfire/src/test/resources/log4j.properties ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/continuum/trunk/continuum-xfire/src/test/resources/log4j.properties ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Propchange: maven/continuum/trunk/continuum-xfire/src/test/resources/org/apache/maven/continuum/xfire/ContinuumXFireTest.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/continuum/trunk/continuum-xfire/src/test/resources/org/apache/maven/continuum/xfire/ContinuumXFireTest.xml ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision