Package com.netflix.template.server

Source Code of com.netflix.template.server.TalkServer

package com.netflix.template.server;

import com.netflix.template.common.Conversation;
import com.netflix.template.common.Sentence;

import javax.ws.rs.GET;
import javax.ws.rs.DELETE;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;

@Path("/talk")
public class TalkServer implements Conversation {

    @GET
    @Produces(MediaType.APPLICATION_XML)
    public Sentence greeting() {
        return new Sentence("Hello");
    }

    @DELETE
    @Produces(MediaType.APPLICATION_XML)
    public Sentence farewell() {
        return new Sentence("Goodbye");
    }
}
TOP

Related Classes of com.netflix.template.server.TalkServer

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.