diff options
author | Jorge Hernandez <jorge.hernandez-herrero@att.com> | 2019-01-11 14:59:54 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-01-11 14:59:54 +0000 |
commit | 7264e7361fe0366e8f0298a74b28dc2b86946600 (patch) | |
tree | b3d6673cb64bcf5ae4bf6b1a9117b5bfcd9f432c /controlloop/common/model-impl/trafficgenerator/src/main | |
parent | 476c59c87660115cb66c99689041ac540d98bf57 (diff) | |
parent | f7d29c228fb678eba73d86c3d94f05d8fff69c51 (diff) |
Merge "Remove trafficgenerator checkstyle suppressions"
Diffstat (limited to 'controlloop/common/model-impl/trafficgenerator/src/main')
-rw-r--r-- | controlloop/common/model-impl/trafficgenerator/src/main/java/org/onap/policy/vnf/trafficgenerator/PgRequest.java (renamed from controlloop/common/model-impl/trafficgenerator/src/main/java/org/onap/policy/vnf/trafficgenerator/PGRequest.java) | 8 | ||||
-rw-r--r-- | controlloop/common/model-impl/trafficgenerator/src/main/java/org/onap/policy/vnf/trafficgenerator/PgStream.java (renamed from controlloop/common/model-impl/trafficgenerator/src/main/java/org/onap/policy/vnf/trafficgenerator/PGStream.java) | 6 | ||||
-rw-r--r-- | controlloop/common/model-impl/trafficgenerator/src/main/java/org/onap/policy/vnf/trafficgenerator/PgStreams.java (renamed from controlloop/common/model-impl/trafficgenerator/src/main/java/org/onap/policy/vnf/trafficgenerator/PGStreams.java) | 8 |
3 files changed, 11 insertions, 11 deletions
diff --git a/controlloop/common/model-impl/trafficgenerator/src/main/java/org/onap/policy/vnf/trafficgenerator/PGRequest.java b/controlloop/common/model-impl/trafficgenerator/src/main/java/org/onap/policy/vnf/trafficgenerator/PgRequest.java index f4571d68c..026d7d9cc 100644 --- a/controlloop/common/model-impl/trafficgenerator/src/main/java/org/onap/policy/vnf/trafficgenerator/PGRequest.java +++ b/controlloop/common/model-impl/trafficgenerator/src/main/java/org/onap/policy/vnf/trafficgenerator/PgRequest.java @@ -2,7 +2,7 @@ * ============LICENSE_START======================================================= * trafficgenerator * ================================================================================ - * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. + * Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -24,14 +24,14 @@ import com.google.gson.annotations.SerializedName; import java.io.Serializable; -public class PGRequest implements Serializable { +public class PgRequest implements Serializable { private static final long serialVersionUID = -3283942659786236032L; @SerializedName("pg-streams") - public PGStreams pgStreams; + public PgStreams pgStreams; - public PGRequest() { + public PgRequest() { //required by author } } diff --git a/controlloop/common/model-impl/trafficgenerator/src/main/java/org/onap/policy/vnf/trafficgenerator/PGStream.java b/controlloop/common/model-impl/trafficgenerator/src/main/java/org/onap/policy/vnf/trafficgenerator/PgStream.java index dad77e886..499d20f96 100644 --- a/controlloop/common/model-impl/trafficgenerator/src/main/java/org/onap/policy/vnf/trafficgenerator/PGStream.java +++ b/controlloop/common/model-impl/trafficgenerator/src/main/java/org/onap/policy/vnf/trafficgenerator/PgStream.java @@ -2,7 +2,7 @@ * ============LICENSE_START======================================================= * trafficgenerator * ================================================================================ - * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. + * Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -24,7 +24,7 @@ import com.google.gson.annotations.SerializedName; import java.io.Serializable; -public class PGStream implements Serializable { +public class PgStream implements Serializable { private static final long serialVersionUID = 5567635677419358210L; @@ -33,7 +33,7 @@ public class PGStream implements Serializable { @SerializedName("is-enabled") public String isEnabled; - public PGStream() { + public PgStream() { //required by author } } diff --git a/controlloop/common/model-impl/trafficgenerator/src/main/java/org/onap/policy/vnf/trafficgenerator/PGStreams.java b/controlloop/common/model-impl/trafficgenerator/src/main/java/org/onap/policy/vnf/trafficgenerator/PgStreams.java index 06117b9a3..566a9eed0 100644 --- a/controlloop/common/model-impl/trafficgenerator/src/main/java/org/onap/policy/vnf/trafficgenerator/PGStreams.java +++ b/controlloop/common/model-impl/trafficgenerator/src/main/java/org/onap/policy/vnf/trafficgenerator/PgStreams.java @@ -2,7 +2,7 @@ * ============LICENSE_START======================================================= * trafficgenerator * ================================================================================ - * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. + * Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -26,14 +26,14 @@ import java.io.Serializable; import java.util.LinkedList; import java.util.List; -public class PGStreams implements Serializable { +public class PgStreams implements Serializable { private static final long serialVersionUID = 5567635677419358210L; @SerializedName("pg-stream") - public List<PGStream> pgStream = new LinkedList<>(); + public List<PgStream> pgStream = new LinkedList<>(); - public PGStreams() { + public PgStreams() { // required by author } } |