Skip to content

Instantly share code, notes, and snippets.

@chamerling
Created February 14, 2012 11:21
Show Gist options
  • Select an option

  • Save chamerling/1825972 to your computer and use it in GitHub Desktop.

Select an option

Save chamerling/1825972 to your computer and use it in GitHub Desktop.
SeaCloud
package com.ebmwebsourcing.seacloud.model;
import javax.jws.WebParam;
import net.cloudbees.fifiant.soceda.services.esperengine.ListAllStatementsResponse;
import seacloud.petalslink.com.service.management.cloud._1_0.CloudManagementException;
public interface CEPModule {
public ListAllStatementsResponse listAllStatements(net.cloudbees.fifiant.soceda.services.esperengine.ListAllStatements parameters) throws CloudManagementException;
public String addStatement(String statementId, String statement) throws CloudManagementException;
public String deleteStatement(String statementId) throws CloudManagementException;
public String getStatementById(String statementId) throws CloudManagementException;
public String updateStatement(String statementId, String statement) throws CloudManagementException;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment