Created
February 14, 2012 11:21
-
-
Save chamerling/1825972 to your computer and use it in GitHub Desktop.
SeaCloud
This file contains hidden or 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
| 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