Skip to content

Commit

Permalink
move RPC data structures from core to vcell-api-types
Browse files Browse the repository at this point in the history
  • Loading branch information
jcschaff committed Jan 23, 2025
1 parent 4df69f1 commit 2592986
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package cbit.rmi.event;
package org.vcell.api.types.rpc;

import java.io.Serializable;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* http://www.opensource.org/licenses/mit-license.php
*/

package cbit.rmi.event;
package org.vcell.api.types.rpc;


/**
Expand Down
4 changes: 2 additions & 2 deletions vcell-api/src/main/java/org/vcell/rest/rpc/RpcRestlet.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package org.vcell.rest.rpc;

import cbit.rmi.event.VCellApiRpcBody;
import org.vcell.api.types.rpc.VCellApiRpcBody;
import cbit.vcell.clientdb.ServerRejectedSaveException;
import cbit.vcell.message.VCRpcRequest;
import cbit.vcell.message.VCRpcRequest.RpcServiceType;
Expand All @@ -17,7 +17,7 @@
import org.restlet.data.Status;
import org.restlet.engine.adapter.HttpRequest;
import org.restlet.representation.ByteArrayRepresentation;
import cbit.rmi.event.VCellApiRpcRequest;
import org.vcell.api.types.rpc.VCellApiRpcRequest;
import org.vcell.rest.VCellApiApplication;
import org.vcell.rest.VCellApiApplication.AuthenticationPolicy;
import org.vcell.rest.server.RestDatabaseService;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package org.vcell.api.client;

import cbit.rmi.event.VCellApiRpcBody;
import cbit.rmi.event.VCellApiRpcRequest;
import org.vcell.api.types.rpc.VCellApiRpcBody;
import org.vcell.api.types.rpc.VCellApiRpcRequest;
import com.google.gson.Gson;
import com.nimbusds.oauth2.sdk.ParseException;
import org.vcell.api.types.common.BiomodelRepresentation;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
import org.apache.logging.log4j.Logger;
import org.vcell.DependencyConstants;
import org.vcell.api.client.VCellApiClient;
import cbit.rmi.event.VCellApiRpcBody;
import cbit.rmi.event.VCellApiRpcRequest;
import org.vcell.api.types.rpc.VCellApiRpcBody;
import org.vcell.api.types.rpc.VCellApiRpcRequest;
import org.vcell.api.utils.Auth0ConnectionUtils;
import org.vcell.restclient.ApiException;
import org.vcell.restclient.model.AccesTokenRepresentationRecord;
Expand Down

0 comments on commit 2592986

Please sign in to comment.