Thomas Vachuska

Fixing javadocs.

Change-Id: I9e6b3d7eb08d17d4ad450277a1279f6aaefd4640
/*
* Copyright 2015 Open Networking Laboratory
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* BGP routing application components.
*/
package org.onosproject.bgprouter;
\ No newline at end of file
......@@ -55,6 +55,7 @@ public class LocalIpPrefixEntry {
*
* @param ipPrefix an IP prefix as a String
* @param type an IP prefix type as an IpPrefixType
* @param gatewayIpAddress IP of the gateway
*/
public LocalIpPrefixEntry(@JsonProperty("ipPrefix") String ipPrefix,
@JsonProperty("type") IpPrefixType type,
......
......@@ -58,7 +58,7 @@ public class IcmpHandler {
* If it is an ICMP packet to unknown host in a subnet, then sends an ARP request
* to the subnet.
*
* @param pkt
* @param pkt inbound packet
*/
public void processPacketIn(InboundPacket pkt) {
......
......@@ -53,7 +53,7 @@ public class RoutingRulePopulator {
/**
* Creates a RoutingRulePopulator object.
*
* @param srManager
* @param srManager segment routing manager reference
*/
public RoutingRulePopulator(SegmentRoutingManager srManager) {
this.srManager = srManager;
......
/*
* Copyright 2015 Open Networking Laboratory
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* Segment routing network configuration mechanism.
*/
package org.onosproject.segmentrouting.config;
\ No newline at end of file
/*
* Copyright 2015 Open Networking Laboratory
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* Segment routing group handling.
*/
package org.onosproject.segmentrouting.grouphandler;
\ No newline at end of file
/*
* Copyright 2015 Open Networking Laboratory
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* Segment routing application components.
*/
package org.onosproject.segmentrouting;
\ No newline at end of file
......@@ -248,7 +248,7 @@ public final class DefaultPortStatistics implements PortStatistics {
/**
* Sets the number of packets dropped by TX.
*
* @param packets
* @param packets number of packets
* @return builder object
*/
public Builder setPacketsTxDropped(long packets) {
......
......@@ -103,7 +103,7 @@
<group>
<title>Sample Applications</title>
<packages>
org.onosproject.tvue:org.onosproject.fwd:org.onosproject.ifwd:org.onosproject.mobility:org.onosproject.proxyarp:org.onosproject.foo:org.onosproject.calendar:org.onosproject.optical:org.onosproject.optical.*:org.onosproject.sdnip:org.onosproject.sdnip.*:org.onosproject.config:org.onosproject.routing:org.onosproject.routing*:org.onosproject.bgprouter:org.onosproject.intentperf
org.onosproject.tvue:org.onosproject.fwd:org.onosproject.ifwd:org.onosproject.mobility:org.onosproject.proxyarp:org.onosproject.foo:org.onosproject.calendar:org.onosproject.optical:org.onosproject.optical.*:org.onosproject.sdnip:org.onosproject.sdnip.*:org.onosproject.config:org.onosproject.routing:org.onosproject.routing*:org.onosproject.bgprouter:org.onosproject.intentperf:org.onosproject.segmentrouting:org.onosproject.segmentrouting.*:org.onosproject.reactive.routing*
</packages>
</group>
<group>
......
......@@ -88,7 +88,7 @@ public class MPLS extends BasePacket {
/**
* Sets the MPLS label.
*
* @param label
* @param label MPLS label
*/
public void setLabel(int label) {
this.label = label;
......