[forge-issues] [JBoss JIRA] (FORGE-2177) Being able to create a new REST endpoint

Antonio Goncalves (JIRA) issues at jboss.org
Sat Mar 14 17:36:18 EDT 2015


     [ https://issues.jboss.org/browse/FORGE-2177?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Antonio Goncalves updated FORGE-2177:
-------------------------------------
    Description: 
It would be good to have a command to create a REST endpoint. A command like this :

{code}
rest-new-endpoint --named MyEndpoint
{code}

Would generate

{code}
@Path("/myEndpoint")
public class CustomerEndpoint
{
}
{code}

Changing the path would be : 
{code}
rest-new-endpoint --named MyEndPoint --path endpoint
{code}

This would generate :

{code}
@Path("/endpoint")
public class CustomerEndpoint
{
}
{code}


  was:
It would be good to have a command to create a REST endpoint. A command like this :

{code}
rest-new-endpoint --named MyEndPoint
{code}

Would generate

{code}
@Path("/myEndpoint")
public class CustomerEndpoint
{
}
{code}

Changing the path would be : 
{code}
rest-new-endpoint --named MyEndPoint --path endpoint
{code}

This would generate :

{code}
@Path("/endpoint")
public class CustomerEndpoint
{
}
{code}




> Being able to create a new REST endpoint
> ----------------------------------------
>
>                 Key: FORGE-2177
>                 URL: https://issues.jboss.org/browse/FORGE-2177
>             Project: Forge
>          Issue Type: Sub-task
>          Components: Java EE
>    Affects Versions: 2.13.0.Final
>            Reporter: Antonio Goncalves
>              Labels: Starter
>             Fix For: 2.x Future
>
>
> It would be good to have a command to create a REST endpoint. A command like this :
> {code}
> rest-new-endpoint --named MyEndpoint
> {code}
> Would generate
> {code}
> @Path("/myEndpoint")
> public class CustomerEndpoint
> {
> }
> {code}
> Changing the path would be : 
> {code}
> rest-new-endpoint --named MyEndPoint --path endpoint
> {code}
> This would generate :
> {code}
> @Path("/endpoint")
> public class CustomerEndpoint
> {
> }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.11#6341)


More information about the forge-issues mailing list