-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PETALSSTUD-327: Upgrade for the components of Petals 5
- Loading branch information
1 parent
081a3a9
commit 1fb222b
Showing
49 changed files
with
1,471 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
...src/com/ebmwebsourcing/petals/services/filetransfer/v33/FileTransferConsumesWizard33.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/****************************************************************************** | ||
* Copyright (c) 2016, Linagora | ||
* | ||
* All rights reserved. This program and the accompanying materials | ||
* are made available under the terms of the Eclipse Public License v1.0 | ||
* which accompanies this distribution, and is available at | ||
* http://www.eclipse.org/legal/epl-v10.html | ||
* | ||
* Contributors: | ||
* Linagora - initial API and implementation | ||
*******************************************************************************/ | ||
|
||
package com.ebmwebsourcing.petals.services.filetransfer.v33; | ||
|
||
import com.ebmwebsourcing.petals.services.filetransfer.v30.wizard.FileTransferConsumesWizard30; | ||
import com.ebmwebsourcing.petals.services.su.extensions.ComponentVersionDescription; | ||
|
||
/** | ||
* @author Victor Noel - Linagora | ||
*/ | ||
public class FileTransferConsumesWizard33 extends FileTransferConsumesWizard30 { | ||
|
||
@Override | ||
public ComponentVersionDescription getComponentVersionDescription() { | ||
return new FileTransferDescription33(); | ||
} | ||
} |
26 changes: 26 additions & 0 deletions
26
...er/src/com/ebmwebsourcing/petals/services/filetransfer/v33/FileTransferDescription33.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/****************************************************************************** | ||
* Copyright (c) 2016, Linagora | ||
* | ||
* All rights reserved. This program and the accompanying materials | ||
* are made available under the terms of the Eclipse Public License v1.0 | ||
* which accompanies this distribution, and is available at | ||
* http://www.eclipse.org/legal/epl-v10.html | ||
* | ||
* Contributors: | ||
* Linagora - initial API and implementation | ||
*******************************************************************************/ | ||
|
||
package com.ebmwebsourcing.petals.services.filetransfer.v33; | ||
|
||
import com.ebmwebsourcing.petals.services.filetransfer.FileTransferDescription; | ||
|
||
/** | ||
* @author Victor Noel - Linagora | ||
*/ | ||
public class FileTransferDescription33 extends FileTransferDescription { | ||
|
||
@Override | ||
public String getComponentVersion() { | ||
return "3.3.2"; | ||
} | ||
} |
27 changes: 27 additions & 0 deletions
27
...src/com/ebmwebsourcing/petals/services/filetransfer/v33/FileTransferProvidesWizard33.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/****************************************************************************** | ||
* Copyright (c) 2016, Linagora | ||
* | ||
* All rights reserved. This program and the accompanying materials | ||
* are made available under the terms of the Eclipse Public License v1.0 | ||
* which accompanies this distribution, and is available at | ||
* http://www.eclipse.org/legal/epl-v10.html | ||
* | ||
* Contributors: | ||
* Linagora - initial API and implementation | ||
*******************************************************************************/ | ||
|
||
package com.ebmwebsourcing.petals.services.filetransfer.v33; | ||
|
||
import com.ebmwebsourcing.petals.services.filetransfer.v30.wizard.FileTransferProvidesWizard30; | ||
import com.ebmwebsourcing.petals.services.su.extensions.ComponentVersionDescription; | ||
|
||
/** | ||
* @author Victor Noel - Linagora | ||
*/ | ||
public class FileTransferProvidesWizard33 extends FileTransferProvidesWizard30 { | ||
|
||
@Override | ||
public ComponentVersionDescription getComponentVersionDescription() { | ||
return new FileTransferDescription33(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
...cing.petals.services.ftp/src/com/ebmwebsourcing/petals/services/ftp/FtpDescription37.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/****************************************************************************** | ||
* Copyright (c) 2016, Linagora | ||
* | ||
* All rights reserved. This program and the accompanying materials | ||
* are made available under the terms of the Eclipse Public License v1.0 | ||
* which accompanies this distribution, and is available at | ||
* http://www.eclipse.org/legal/epl-v10.html | ||
* | ||
* Contributors: | ||
* Linagora - initial API and implementation | ||
*******************************************************************************/ | ||
|
||
package com.ebmwebsourcing.petals.services.ftp; | ||
|
||
/** | ||
* @author Victor Noel - Linagora | ||
*/ | ||
public class FtpDescription37 extends FtpDescription33 { | ||
|
||
@Override | ||
public String getComponentVersion() { | ||
return "3.7.2"; | ||
} | ||
} |
27 changes: 27 additions & 0 deletions
27
...s.services.ftp/src/com/ebmwebsourcing/petals/services/ftp/wizard/FtpProvidesWizard37.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/****************************************************************************** | ||
* Copyright (c) 2016, Linagora | ||
* | ||
* All rights reserved. This program and the accompanying materials | ||
* are made available under the terms of the Eclipse Public License v1.0 | ||
* which accompanies this distribution, and is available at | ||
* http://www.eclipse.org/legal/epl-v10.html | ||
* | ||
* Contributors: | ||
* Linagora - initial API and implementation | ||
*******************************************************************************/ | ||
|
||
package com.ebmwebsourcing.petals.services.ftp.wizard; | ||
|
||
import com.ebmwebsourcing.petals.services.ftp.FtpDescription37; | ||
import com.ebmwebsourcing.petals.services.su.extensions.ComponentVersionDescription; | ||
|
||
/** | ||
* @author Victor Noel - Linagora | ||
*/ | ||
public class FtpProvidesWizard37 extends FtpProvidesWizard34 { | ||
|
||
@Override | ||
public ComponentVersionDescription getComponentVersionDescription() { | ||
return new FtpDescription37(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
...cing.petals.services.jms/src/com/ebmwebsourcing/petals/services/jms/JmsDescription32.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/****************************************************************************** | ||
* Copyright (c) 2016, Linagora | ||
* | ||
* All rights reserved. This program and the accompanying materials | ||
* are made available under the terms of the Eclipse Public License v1.0 | ||
* which accompanies this distribution, and is available at | ||
* http://www.eclipse.org/legal/epl-v10.html | ||
* | ||
* Contributors: | ||
* Linagora - initial API and implementation | ||
*******************************************************************************/ | ||
|
||
package com.ebmwebsourcing.petals.services.jms; | ||
|
||
|
||
/** | ||
* @author Victor Noel - Linagora | ||
*/ | ||
public class JmsDescription32 extends JmsDescription31 { | ||
|
||
@Override | ||
public String getComponentVersion() { | ||
return "3.2"; | ||
} | ||
} |
27 changes: 27 additions & 0 deletions
27
....services.jms/src/com/ebmwebsourcing/petals/services/jms/wizards/JmsConsumesWizard32.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/****************************************************************************** | ||
* Copyright (c) 2016, Linagora | ||
* | ||
* All rights reserved. This program and the accompanying materials | ||
* are made available under the terms of the Eclipse Public License v1.0 | ||
* which accompanies this distribution, and is available at | ||
* http://www.eclipse.org/legal/epl-v10.html | ||
* | ||
* Contributors: | ||
* Linagora - initial API and implementation | ||
*******************************************************************************/ | ||
|
||
package com.ebmwebsourcing.petals.services.jms.wizards; | ||
|
||
import com.ebmwebsourcing.petals.services.jms.JmsDescription32; | ||
import com.ebmwebsourcing.petals.services.su.extensions.ComponentVersionDescription; | ||
|
||
/** | ||
* @author Victor Noel - Linagora | ||
*/ | ||
public class JmsConsumesWizard32 extends JmsConsumesWizard31 { | ||
|
||
@Override | ||
public ComponentVersionDescription getComponentVersionDescription() { | ||
return new JmsDescription32(); | ||
} | ||
} |
27 changes: 27 additions & 0 deletions
27
....services.jms/src/com/ebmwebsourcing/petals/services/jms/wizards/JmsProvidesWizard32.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/****************************************************************************** | ||
* Copyright (c) 2016, Linagora | ||
* | ||
* All rights reserved. This program and the accompanying materials | ||
* are made available under the terms of the Eclipse Public License v1.0 | ||
* which accompanies this distribution, and is available at | ||
* http://www.eclipse.org/legal/epl-v10.html | ||
* | ||
* Contributors: | ||
* Linagora - initial API and implementation | ||
*******************************************************************************/ | ||
|
||
package com.ebmwebsourcing.petals.services.jms.wizards; | ||
|
||
import com.ebmwebsourcing.petals.services.jms.JmsDescription32; | ||
import com.ebmwebsourcing.petals.services.su.extensions.ComponentVersionDescription; | ||
|
||
/** | ||
* @author Victor Noel - Linagora | ||
*/ | ||
public class JmsProvidesWizard32 extends JmsProvidesWizard31 { | ||
|
||
@Override | ||
public ComponentVersionDescription getComponentVersionDescription() { | ||
return new JmsDescription32(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
...ervices.jsr181/src/com/ebmwebsourcing/petals/services/jsr181/v15/Jsr181Description15.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/****************************************************************************** | ||
* Copyright (c) 2016, Linagora | ||
* | ||
* All rights reserved. This program and the accompanying materials | ||
* are made available under the terms of the Eclipse Public License v1.0 | ||
* which accompanies this distribution, and is available at | ||
* http://www.eclipse.org/legal/epl-v10.html | ||
* | ||
* Contributors: | ||
* Linagora - initial API and implementation | ||
*******************************************************************************/ | ||
|
||
package com.ebmwebsourcing.petals.services.jsr181.v15; | ||
|
||
import com.ebmwebsourcing.petals.services.jsr181.v11.Jsr181Description11; | ||
|
||
|
||
/** | ||
* @author Victor Noel - Linagora | ||
*/ | ||
public class Jsr181Description15 extends Jsr181Description11 { | ||
|
||
@Override | ||
public String getComponentVersion() { | ||
return "1.5.2"; | ||
} | ||
} |
44 changes: 44 additions & 0 deletions
44
...ices.jsr181/src/com/ebmwebsourcing/petals/services/jsr181/v15/Jsr181ProvidesWizard15.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/****************************************************************************** | ||
* Copyright (c) 2016, Linagora | ||
* | ||
* All rights reserved. This program and the accompanying materials | ||
* are made available under the terms of the Eclipse Public License v1.0 | ||
* which accompanies this distribution, and is available at | ||
* http://www.eclipse.org/legal/epl-v10.html | ||
* | ||
* Contributors: | ||
* Linagora - initial API and implementation | ||
*******************************************************************************/ | ||
|
||
package com.ebmwebsourcing.petals.services.jsr181.v15; | ||
|
||
import java.util.ArrayList; | ||
import java.util.List; | ||
|
||
import com.ebmwebsourcing.petals.common.internal.provisional.maven.MavenBean; | ||
import com.ebmwebsourcing.petals.services.jsr181.v11.Jsr181ProvidesWizard11; | ||
import com.ebmwebsourcing.petals.services.su.extensions.ComponentVersionDescription; | ||
|
||
/** | ||
* @author Victor Noel - Linagora | ||
*/ | ||
public class Jsr181ProvidesWizard15 extends Jsr181ProvidesWizard11 { | ||
|
||
@Override | ||
public ComponentVersionDescription getComponentVersionDescription() { | ||
return new Jsr181Description15(); | ||
} | ||
|
||
@Override | ||
public List<MavenBean> getAdditionalMavenDependencies() { | ||
|
||
List<MavenBean> result = new ArrayList<MavenBean> (); | ||
MavenBean bean = new MavenBean(); | ||
bean.setArtifactId( "petals-se-jsr181-library" ); | ||
bean.setGroupId( "org.ow2.petals" ); | ||
bean.setVersion( "1.5.2" ); | ||
|
||
result.add( bean ); | ||
return result; | ||
} | ||
} |
Oops, something went wrong.