X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-rest-docgen%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Frest%2Fdoc%2Fswagger%2FOperation.java;h=ba0c7966ecb856d4b21d8d1acd3e93785307d0b2;hb=bc1e703ab2d257b450fe6eb3fe0fe5333783bc69;hp=d1150fd0bd426b6d0ba51a3d2c2417ce18d1ffc6;hpb=f97c2c15dab2ff9b06b7eb94bed49363a10b17fc;p=controller.git diff --git a/opendaylight/md-sal/sal-rest-docgen/src/main/java/org/opendaylight/controller/sal/rest/doc/swagger/Operation.java b/opendaylight/md-sal/sal-rest-docgen/src/main/java/org/opendaylight/controller/sal/rest/doc/swagger/Operation.java index d1150fd0bd..ba0c7966ec 100644 --- a/opendaylight/md-sal/sal-rest-docgen/src/main/java/org/opendaylight/controller/sal/rest/doc/swagger/Operation.java +++ b/opendaylight/md-sal/sal-rest-docgen/src/main/java/org/opendaylight/controller/sal/rest/doc/swagger/Operation.java @@ -10,81 +10,82 @@ package org.opendaylight.controller.sal.rest.doc.swagger; import java.util.List; /** - * Implementation of swagger spec - * (see - * https://github.com/wordnik/swagger-spec/blob/master/versions/1.2.md#523-operation-object) + * Implementation of swagger spec (see https://github.com/wordnik/swagger-spec/blob/master/versions/1.2.md#523- + * operation-object) */ public class Operation { - private String method; - private String summary; - private String notes; - private String type; - private String nickname; - private List consumes; - private List parameters; - private List responseMessages; - - public String getMethod() { - return method; - } - - public void setMethod(String method) { - this.method = method; - } - - public String getSummary() { - return summary; - } - - public void setSummary(String summary) { - this.summary = summary; - } - - public String getNotes() { - return notes; - } - - public void setNotes(String notes) { - this.notes = notes; - } - - public String getType() { - return type; - } - - public void setType(String type) { - this.type = type; - } - - public String getNickname() { - return nickname; - } - - public void setNickname(String nickname) { - this.nickname = nickname; - } - - public List getConsumes() { - return consumes; - } - - public void setConsumes(List consumes) { - this.consumes = consumes; - } - - public List getParameters() { - return parameters; - } - - public void setParameters(List parameters) { - this.parameters = parameters; - } - - public List getResponseMessages() { - return responseMessages; - } - - public void setResponseMessages(List responseMessages) { - this.responseMessages = responseMessages; - } + private String method; + private String summary; + private String notes; + private String type; + private String nickname; + private List consumes; + private List parameters; + private List responseMessages; + + public String getMethod() { + return method; + } + + public void setMethod(String method) { + this.method = method; + } + + public String getSummary() { + return summary; + } + + public void setSummary(String summary) { + this.summary = summary; + } + + public String getNotes() { + return notes; + } + + public void setNotes(String notes) { + this.notes = notes; + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type; + } + + public String getNickname() { + return nickname; + } + + public void setNickname(String nickname) { + this.nickname = nickname; + } + + public List getConsumes() { + return consumes; + } + + public void setConsumes(List consumes) { + this.consumes = consumes; + } + + public List getParameters() { + return parameters; + } + + public void setParameters(List parameters) { + this.parameters = parameters; + } + + public List getResponseMessages() { + return responseMessages; + } + + public void setResponseMessages(List responseMessages) { + this.responseMessages = responseMessages; + } }