Bharat saraswal
Committed by Gerrit Code Review

javadoc fixed for bgp

Change-Id: I4ac3d00771a6076ac55b808b55497b55d66e656f
......@@ -35,6 +35,8 @@ public final class BgpId {
/**
* Constructor to initialize ipAddress.
*
* @param ipAddress Ip address
*/
public BgpId(IpAddress ipAddress) {
this.ipAddress = ipAddress;
......@@ -118,4 +120,4 @@ public final class BgpId {
return null;
}
}
}
\ No newline at end of file
}
......
......@@ -107,6 +107,7 @@ public final class BgpLinkAttrProtectionType implements BgpValueType {
* Returns Link Protection Type.
*
* @return Link Protection Type
* @throws BgpParseException when failed to parse link protection type
*/
public ProtectionType protectionType() throws BgpParseException {
switch (linkProtectionType) {
......
......@@ -73,6 +73,7 @@ public class BgpLinkAttrUnRsrvdLinkBandwidth implements BgpValueType {
* Reads the BGP link attributes of Maximum link bandwidth.
*
* @param cb Channel buffer
* @param sType returns the tag value
* @return object of type BgpLinkAttrMaxLinkBandwidth
* @throws BgpParseException while parsing BgpLinkAttrMaxLinkBandwidth
*/
......