Skip to content

Commit

Permalink
[HWKMETRICS-326] Fix a typo in the package name.
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Negrea committed Nov 23, 2015
1 parent ae3edd2 commit 22abbe0
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public long getTimestamp() {
@ApiModelProperty(required = true, dataType = "string", allowableValues = "up,down,unknown")
@JsonSerialize(using = AvailabilityTypeSerializer.class)
@org.codehaus.jackson.map.annotate.JsonSerialize(
using = org.hawkular.metrics.core.api.codehause.jackson.AvailabilityTypeSerializer.class
using = org.hawkular.metrics.core.api.codehaus.jackson.AvailabilityTypeSerializer.class
)
public AvailabilityType getValue() {
return value;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public MetricDefinition(
@org.codehaus.jackson.annotate.JsonProperty("type")
@JsonDeserialize(using = MetricTypeDeserializer.class)
@org.codehaus.jackson.map.annotate.JsonDeserialize(
using = org.hawkular.metrics.core.api.codehause.jackson.MetricTypeDeserializer.class
using = org.hawkular.metrics.core.api.codehaus.jackson.MetricTypeDeserializer.class
)
MetricType<?> type
) {
Expand Down Expand Up @@ -110,7 +110,7 @@ public Integer getDataRetention() {
@ApiModelProperty(value = "Metric type", dataType = "string", allowableValues = "gauge, availability, counter")
@JsonSerialize(using = MetricTypeSerializer.class)
@org.codehaus.jackson.map.annotate.JsonSerialize(
using = org.hawkular.metrics.core.api.codehause.jackson.MetricTypeSerializer.class
using = org.hawkular.metrics.core.api.codehaus.jackson.MetricTypeSerializer.class
)
public MetricType<?> getType() {
return type;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,11 @@ public String getId() {
@JsonSerialize(include = Inclusion.NON_EMPTY, keyUsing = MetricTypeKeySerializer.class)
@org.codehaus.jackson.map.annotate.JsonSerialize(
include = org.codehaus.jackson.map.annotate.JsonSerialize.Inclusion.NON_EMPTY,
keyUsing = org.hawkular.metrics.core.api.codehause.jackson.MetricTypeKeySerializer.class
keyUsing = org.hawkular.metrics.core.api.codehaus.jackson.MetricTypeKeySerializer.class
)
// Codehaus Jackson wants @JsonDeserialize here
@org.codehaus.jackson.map.annotate.JsonDeserialize(
keyUsing = org.hawkular.metrics.core.api.codehause.jackson.MetricTypeKeyDeserializer.class
keyUsing = org.hawkular.metrics.core.api.codehaus.jackson.MetricTypeKeyDeserializer.class
)
public Map<MetricType<?>, Integer> getRetentionSettings() {
return retentionSettings;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package org.hawkular.metrics.core.api.codehause.jackson;
package org.hawkular.metrics.core.api.codehaus.jackson;

import java.io.IOException;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.hawkular.metrics.core.api.codehause.jackson;
package org.hawkular.metrics.core.api.codehaus.jackson;

import java.io.IOException;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

package org.hawkular.metrics.core.api.codehause.jackson;
package org.hawkular.metrics.core.api.codehaus.jackson;

import java.io.IOException;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.hawkular.metrics.core.api.codehause.jackson;
package org.hawkular.metrics.core.api.codehaus.jackson;

import java.io.IOException;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.hawkular.metrics.core.api.codehause.jackson;
package org.hawkular.metrics.core.api.codehaus.jackson;

import java.io.IOException;

Expand Down

0 comments on commit 22abbe0

Please sign in to comment.