Bharat saraswal
Committed by Gerrit Code Review

javadoc fixed for bgp

Change-Id: I4ac3d00771a6076ac55b808b55497b55d66e656f
...@@ -35,6 +35,8 @@ public final class BgpId { ...@@ -35,6 +35,8 @@ public final class BgpId {
35 35
36 /** 36 /**
37 * Constructor to initialize ipAddress. 37 * Constructor to initialize ipAddress.
38 + *
39 + * @param ipAddress Ip address
38 */ 40 */
39 public BgpId(IpAddress ipAddress) { 41 public BgpId(IpAddress ipAddress) {
40 this.ipAddress = ipAddress; 42 this.ipAddress = ipAddress;
......
...@@ -107,6 +107,7 @@ public final class BgpLinkAttrProtectionType implements BgpValueType { ...@@ -107,6 +107,7 @@ public final class BgpLinkAttrProtectionType implements BgpValueType {
107 * Returns Link Protection Type. 107 * Returns Link Protection Type.
108 * 108 *
109 * @return Link Protection Type 109 * @return Link Protection Type
110 + * @throws BgpParseException when failed to parse link protection type
110 */ 111 */
111 public ProtectionType protectionType() throws BgpParseException { 112 public ProtectionType protectionType() throws BgpParseException {
112 switch (linkProtectionType) { 113 switch (linkProtectionType) {
......
...@@ -73,6 +73,7 @@ public class BgpLinkAttrUnRsrvdLinkBandwidth implements BgpValueType { ...@@ -73,6 +73,7 @@ public class BgpLinkAttrUnRsrvdLinkBandwidth implements BgpValueType {
73 * Reads the BGP link attributes of Maximum link bandwidth. 73 * Reads the BGP link attributes of Maximum link bandwidth.
74 * 74 *
75 * @param cb Channel buffer 75 * @param cb Channel buffer
76 + * @param sType returns the tag value
76 * @return object of type BgpLinkAttrMaxLinkBandwidth 77 * @return object of type BgpLinkAttrMaxLinkBandwidth
77 * @throws BgpParseException while parsing BgpLinkAttrMaxLinkBandwidth 78 * @throws BgpParseException while parsing BgpLinkAttrMaxLinkBandwidth
78 */ 79 */
......