-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Relocate API Types to Separate Module
- Loading branch information
1 parent
48ffe47
commit 4df69f1
Showing
40 changed files
with
176 additions
and
83 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
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,87 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>org.vcell</groupId> | ||
<artifactId>vcell-pom</artifactId> | ||
<version>0.0.1-SNAPSHOT</version> | ||
</parent> | ||
|
||
<artifactId>vcell-api-types</artifactId> | ||
|
||
<name>vcell-api-types</name> | ||
|
||
<description>Types used for communication.</description> | ||
<version>1.0.0</version> | ||
<url>https://maven.apache.org</url> | ||
<inceptionYear>2025</inceptionYear> | ||
<organization> | ||
<name>VCell</name> | ||
<url>https://vcell.org</url> | ||
</organization> | ||
<licenses> | ||
<license> | ||
<name>MIT</name> | ||
<url>https://opensource.org/licenses/MIT</url> | ||
</license> | ||
</licenses> | ||
|
||
<developers> | ||
<developer> | ||
<id>avocadomoon</id> | ||
<name>Ezequiel Valencia</name> | ||
<roles> | ||
<role>founder</role> | ||
<role>lead</role> | ||
<role>developer</role> | ||
<role>debugger</role> | ||
<role>reviewer</role> | ||
<role>support</role> | ||
<role>maintainer</role> | ||
</roles> | ||
</developer> | ||
</developers> | ||
|
||
<mailingLists> | ||
<mailingList> | ||
<name>VCell Open Discussion Forum</name> | ||
<subscribe>https://groups.google.com/group/vcell-discuss</subscribe> | ||
<unsubscribe>https://groups.google.com/group/vcell-discuss</unsubscribe> | ||
<post>[email protected]</post> | ||
<archive>https://groups.google.com/group/vcell-discuss</archive> | ||
</mailingList> | ||
</mailingLists> | ||
|
||
<scm> | ||
<connection>scm:git:git://github.com/virtualcell/vcell</connection> | ||
<developerConnection>scm:git:[email protected]:virtualcell/vcell</developerConnection> | ||
<tag>HEAD</tag> | ||
<url>https://github.com/virtualcell/vcell</url> | ||
</scm> | ||
<issueManagement> | ||
<system>Bugzilla</system> | ||
<url>https://github.com/virtualcell/vcell/issues</url> | ||
</issueManagement> | ||
|
||
<properties> | ||
<license.licenseName>MIT</license.licenseName> | ||
<license.copyrightOwners>UConn Health</license.copyrightOwners> | ||
</properties> | ||
|
||
<repositories> | ||
<repository> | ||
<id>maven-restlet</id> | ||
<name>Restlet repository</name> | ||
<url>https://maven.restlet.talend.com</url> | ||
</repository> | ||
</repositories> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.vcell</groupId> | ||
<artifactId>vcell-core</artifactId> | ||
<version>0.0.1-SNAPSHOT</version> | ||
</dependency> | ||
</dependencies> | ||
</project> |
2 changes: 1 addition & 1 deletion
2
...ent/common/AccessTokenRepresentation.java → ...pes/common/AccessTokenRepresentation.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package cbit.rmi.event.client.common; | ||
package org.vcell.api.types.common; | ||
|
||
|
||
|
||
|
2 changes: 1 addition & 1 deletion
2
...ent/common/ApplicationRepresentation.java → ...pes/common/ApplicationRepresentation.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
2 changes: 1 addition & 1 deletion
2
...rmi/event/client/common/BioModelLink.java → .../vcell/api/types/common/BioModelLink.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
2 changes: 1 addition & 1 deletion
2
...client/common/BiomodelRepresentation.java → .../types/common/BiomodelRepresentation.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package cbit.rmi.event.client.common; | ||
package org.vcell.api.types.common; | ||
|
||
|
||
public class BiomodelRepresentation { | ||
|
2 changes: 1 addition & 1 deletion
2
...mi/event/client/common/MathModelLink.java → ...vcell/api/types/common/MathModelLink.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package cbit.rmi.event.client.common; | ||
package org.vcell.api.types.common; | ||
|
||
|
||
public class MathModelLink { | ||
|
2 changes: 1 addition & 1 deletion
2
.../client/common/SimDataRepresentation.java → ...i/types/common/SimDataRepresentation.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package cbit.rmi.event.client.common; | ||
package org.vcell.api.types.common; | ||
|
||
|
||
|
||
|
2 changes: 1 addition & 1 deletion
2
...t/common/SimDataValuesRepresentation.java → ...s/common/SimDataValuesRepresentation.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package cbit.rmi.event.client.common; | ||
package org.vcell.api.types.common; | ||
|
||
|
||
|
||
|
2 changes: 1 addition & 1 deletion
2
...common/SimDataVariableRepresentation.java → ...common/SimDataVariableRepresentation.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package cbit.rmi.event.client.common; | ||
package org.vcell.api.types.common; | ||
|
||
|
||
|
||
|
2 changes: 1 addition & 1 deletion
2
.../SimDataVariableValuesRepresentation.java → .../SimDataVariableValuesRepresentation.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package cbit.rmi.event.client.common; | ||
package org.vcell.api.types.common; | ||
|
||
|
||
|
||
|
2 changes: 1 addition & 1 deletion
2
...common/SimpleJobStatusRepresentation.java → ...common/SimpleJobStatusRepresentation.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package cbit.rmi.event.client.common; | ||
package org.vcell.api.types.common; | ||
|
||
import java.util.Date; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...ient/common/SimulationRepresentation.java → ...ypes/common/SimulationRepresentation.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package cbit.rmi.event.client.common; | ||
package org.vcell.api.types.common; | ||
|
||
|
||
|
||
|
2 changes: 1 addition & 1 deletion
2
.../common/SimulationTaskRepresentation.java → .../common/SimulationTaskRepresentation.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
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
2 changes: 1 addition & 1 deletion
2
.../events/BroadcastEventRepresentation.java → .../events/BroadcastEventRepresentation.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
2 changes: 1 addition & 1 deletion
2
...nt/events/DataJobEventRepresentation.java → ...es/events/DataJobEventRepresentation.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
2 changes: 1 addition & 1 deletion
2
...rmi/event/client/events/EventWrapper.java → .../vcell/api/types/events/EventWrapper.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package cbit.rmi.event.client.events; | ||
package org.vcell.api.types.events; | ||
|
||
public class EventWrapper { | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...ent/events/ExportEventRepresentation.java → ...pes/events/ExportEventRepresentation.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
2 changes: 1 addition & 1 deletion
2
...t/events/ExportHumanReadableDataSpec.java → ...s/events/ExportHumanReadableDataSpec.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
2 changes: 1 addition & 1 deletion
2
.../event/client/events/ExportTimeSpecs.java → ...ell/api/types/events/ExportTimeSpecs.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
2 changes: 1 addition & 1 deletion
2
...nt/client/events/ExportVariableSpecs.java → ...api/types/events/ExportVariableSpecs.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
2 changes: 1 addition & 1 deletion
2
...mulationJobStatusEventRepresentation.java → ...mulationJobStatusEventRepresentation.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
2 changes: 1 addition & 1 deletion
2
...ts/SimulationJobStatusRepresentation.java → ...ts/SimulationJobStatusRepresentation.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package cbit.rmi.event.client.events; | ||
package org.vcell.api.types.events; | ||
|
||
import java.util.Date; | ||
|
||
|
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
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
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
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
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
Oops, something went wrong.