Package org.helm.rest
Class RestSMILES
- java.lang.Object
-
- org.helm.rest.RestSMILES
-
@Path("SMILES") public class RestSMILES extends ObjectRestSMILES- Author:
- hecht
-
-
Constructor Summary
Constructors Constructor Description RestSMILES()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.ws.rs.core.ResponsegenerateCanSMILESForHELM(String helmNotation)javax.ws.rs.core.ResponsegenerateCanSMILESForHELMPost(String helmNotation)javax.ws.rs.core.ResponsegenerateSMILESForHELM(String helmNotation)javax.ws.rs.core.ResponsegenerateSMILESForHELMPost(String helmNotation)
-
-
-
Method Detail
-
generateSMILESForHELM
@Path("{c}") @GET @Produces("application/json") @Consumes("application/json") public javax.ws.rs.core.Response generateSMILESForHELM(@PathParam("c") String helmNotation)
-
generateSMILESForHELMPost
@POST @Produces("application/json") @Consumes("application/x-www-form-urlencoded") public javax.ws.rs.core.Response generateSMILESForHELMPost(@FormParam("HELMNotation") String helmNotation)
-
generateCanSMILESForHELM
@Path("/Canonical/{c}") @GET @Produces("application/json") @Consumes("application/json") public javax.ws.rs.core.Response generateCanSMILESForHELM(@PathParam("c") String helmNotation)
-
generateCanSMILESForHELMPost
@Path("/Canonical") @POST @Produces("application/json") @Consumes("application/x-www-form-urlencoded") public javax.ws.rs.core.Response generateCanSMILESForHELMPost(@FormParam("HELMNotation") String helmNotation)
-
-