diff --git a/pom.xml b/pom.xml index 68d74e4..9a40b54 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 com.mobiera.libs aircast-api - 2.50 + 2.55 Aircast API Client Library for Mobiera Aircast Containers https://github.com/mobiera/aircast-api diff --git a/src/main/java/com/mobiera/aircast/api/vo/SimVO.java b/src/main/java/com/mobiera/aircast/api/vo/SimVO.java index 2bb8e5f..b8bc1d9 100644 --- a/src/main/java/com/mobiera/aircast/api/vo/SimVO.java +++ b/src/main/java/com/mobiera/aircast/api/vo/SimVO.java @@ -341,6 +341,71 @@ public class SimVO implements Serializable { private Instant nextP2ScheduleTs; + @UI( widgetType = WidgetType.DATETIME, + mode = Mode.READ_ONLY, + label="Last P3 Sent Ts", + description="Last P3 Sent Ts") + @Section(name = "OTA") + + @JsonSerialize(using = InstantSerializer.class) + @JsonDeserialize(using = InstantDeserializer.class) + private Instant lastP3SentTs; + + + @UI( widgetType = WidgetType.DATETIME, + mode = Mode.READ_WRITE, + label="Next P3 Schedule Ts", + description="Next P3 Schedule Ts") + @Section(name = "OTA") + + @JsonSerialize(using = InstantSerializer.class) + @JsonDeserialize(using = InstantDeserializer.class) + private Instant nextP3ScheduleTs; + + @UI( widgetType = WidgetType.DATETIME, + mode = Mode.READ_ONLY, + label="Last P4 Sent Ts", + description="Last P4 Sent Ts") + @Section(name = "OTA") + + @JsonSerialize(using = InstantSerializer.class) + @JsonDeserialize(using = InstantDeserializer.class) + private Instant lastP4SentTs; + + + @UI( widgetType = WidgetType.DATETIME, + mode = Mode.READ_WRITE, + label="Next P4 Schedule Ts", + description="Next P4 Schedule Ts") + @Section(name = "OTA") + + @JsonSerialize(using = InstantSerializer.class) + @JsonDeserialize(using = InstantDeserializer.class) + private Instant nextP4ScheduleTs; + + @UI( widgetType = WidgetType.DATETIME, + mode = Mode.READ_ONLY, + label="Last P5 Sent Ts", + description="Last P5 Sent Ts") + @Section(name = "OTA") + + @JsonSerialize(using = InstantSerializer.class) + @JsonDeserialize(using = InstantDeserializer.class) + private Instant lastP5SentTs; + + + @UI( widgetType = WidgetType.DATETIME, + mode = Mode.READ_WRITE, + label="Next P5 Schedule Ts", + description="Next P5 Schedule Ts") + @Section(name = "OTA") + + @JsonSerialize(using = InstantSerializer.class) + @JsonDeserialize(using = InstantDeserializer.class) + private Instant nextP5ScheduleTs; + + + @UI( widgetType = WidgetType.DATETIME, @@ -355,6 +420,40 @@ public class SimVO implements Serializable { + @UI( widgetType = WidgetType.DATETIME, + mode = Mode.READ_ONLY, + label="Last P3 Success Ts", + description="Last P3 Success Ts") + @Section(name = "OTA") + + @JsonSerialize(using = InstantSerializer.class) + @JsonDeserialize(using = InstantDeserializer.class) + private Instant lastP3SuccessTs; + + @UI( widgetType = WidgetType.DATETIME, + mode = Mode.READ_ONLY, + label="Last P4 Success Ts", + description="Last P4 Success Ts") + @Section(name = "OTA") + + @JsonSerialize(using = InstantSerializer.class) + @JsonDeserialize(using = InstantDeserializer.class) + private Instant lastP4SuccessTs; + + + @UI( widgetType = WidgetType.DATETIME, + mode = Mode.READ_ONLY, + label="Last P5 Success Ts", + description="Last P5 Success Ts") + @Section(name = "OTA") + + @JsonSerialize(using = InstantSerializer.class) + @JsonDeserialize(using = InstantDeserializer.class) + private Instant lastP5SuccessTs; + + + + @UI( widgetType = WidgetType.DATETIME, mode = Mode.READ_ONLY, label="Last Discovery Sent Ts", @@ -755,6 +854,60 @@ public Instant getLastP2SuccessTs() { public void setLastP2SuccessTs(Instant lastP2SuccessTs) { this.lastP2SuccessTs = lastP2SuccessTs; } + public Instant getLastP3SentTs() { + return lastP3SentTs; + } + public void setLastP3SentTs(Instant lastP3SentTs) { + this.lastP3SentTs = lastP3SentTs; + } + public Instant getNextP3ScheduleTs() { + return nextP3ScheduleTs; + } + public void setNextP3ScheduleTs(Instant nextP3ScheduleTs) { + this.nextP3ScheduleTs = nextP3ScheduleTs; + } + public Instant getLastP4SentTs() { + return lastP4SentTs; + } + public void setLastP4SentTs(Instant lastP4SentTs) { + this.lastP4SentTs = lastP4SentTs; + } + public Instant getNextP4ScheduleTs() { + return nextP4ScheduleTs; + } + public void setNextP4ScheduleTs(Instant nextP4ScheduleTs) { + this.nextP4ScheduleTs = nextP4ScheduleTs; + } + public Instant getLastP5SentTs() { + return lastP5SentTs; + } + public void setLastP5SentTs(Instant lastP5SentTs) { + this.lastP5SentTs = lastP5SentTs; + } + public Instant getNextP5ScheduleTs() { + return nextP5ScheduleTs; + } + public void setNextP5ScheduleTs(Instant nextP5ScheduleTs) { + this.nextP5ScheduleTs = nextP5ScheduleTs; + } + public Instant getLastP3SuccessTs() { + return lastP3SuccessTs; + } + public void setLastP3SuccessTs(Instant lastP3SuccessTs) { + this.lastP3SuccessTs = lastP3SuccessTs; + } + public Instant getLastP4SuccessTs() { + return lastP4SuccessTs; + } + public void setLastP4SuccessTs(Instant lastP4SuccessTs) { + this.lastP4SuccessTs = lastP4SuccessTs; + } + public Instant getLastP5SuccessTs() { + return lastP5SuccessTs; + } + public void setLastP5SuccessTs(Instant lastP5SuccessTs) { + this.lastP5SuccessTs = lastP5SuccessTs; + } diff --git a/src/main/java/com/mobiera/aircast/commons/enums/ImpactPolicy.java b/src/main/java/com/mobiera/aircast/commons/enums/ImpactPolicy.java index a803885..40be8fe 100644 --- a/src/main/java/com/mobiera/aircast/commons/enums/ImpactPolicy.java +++ b/src/main/java/com/mobiera/aircast/commons/enums/ImpactPolicy.java @@ -4,7 +4,7 @@ public enum ImpactPolicy implements Serializable { - P0(0),P1(1),P2(2); + P0(0),P1(1),P2(2),P3(4),P4(4),P5(5); private ImpactPolicy(Integer index){ this.index = index; @@ -24,6 +24,9 @@ public static ImpactPolicy getEnum(Integer index){ case 0: return P0; case 1: return P1; case 2: return P2; + case 3: return P3; + case 4: return P4; + case 5: return P5; default: return null; } } diff --git a/src/main/java/com/mobiera/aircast/commons/enums/ParameterName.java b/src/main/java/com/mobiera/aircast/commons/enums/ParameterName.java index 56abbd7..1926f47 100644 --- a/src/main/java/com/mobiera/aircast/commons/enums/ParameterName.java +++ b/src/main/java/com/mobiera/aircast/commons/enums/ParameterName.java @@ -315,10 +315,23 @@ public enum ParameterName { STRING_POLICY_P0_NAME(ParameterType.CAMPAIGN_POLICIES, "Name of P0 Policy", "Name of P0 Policy"),// STRING_POLICY_P1_NAME(ParameterType.CAMPAIGN_POLICIES, "Name of P1 Policy", "Name of P1 Policy"),// STRING_POLICY_P2_NAME(ParameterType.CAMPAIGN_POLICIES, "Name of P2 Policy", "Name of P2 Policy"),// - - INTEGER_POLICY_P0_DAYS(ParameterType.CAMPAIGN_POLICIES, "Number of days for P0 Policy", "Number of days for P0 Policy"),// - INTEGER_POLICY_P1_DAYS(ParameterType.CAMPAIGN_POLICIES, "Number of days for P1 Policy", "Number of days for P1 Policy"),// - INTEGER_POLICY_P2_DAYS(ParameterType.CAMPAIGN_POLICIES, "Number of days for P2 Policy", "Number of days for P2 Policy"),// + STRING_POLICY_P3_NAME(ParameterType.CAMPAIGN_POLICIES, "Name of P3 Policy", "Name of P3 Policy"),// + STRING_POLICY_P4_NAME(ParameterType.CAMPAIGN_POLICIES, "Name of P4 Policy", "Name of P4 Policy"),// + STRING_POLICY_P5_NAME(ParameterType.CAMPAIGN_POLICIES, "Name of P5 Policy", "Name of P5 Policy"),// + + INTEGER_POLICY_P0_DAYS(ParameterType.CAMPAIGN_POLICIES, "Number of days between 2 impacts for P0 Policy", "Number of days between 2 impacts when looking for msisdn in full database for P0 Policy"),// + INTEGER_POLICY_P1_DAYS(ParameterType.CAMPAIGN_POLICIES, "Number of days between 2 impacts for P1 Policy", "Number of days between 2 impacts when looking for msisdn in full database for P1 Policy"),// + INTEGER_POLICY_P2_DAYS(ParameterType.CAMPAIGN_POLICIES, "Number of days between 2 impacts for P2 Policy", "Number of days between 2 impacts when looking for msisdn in full database for P2 Policy"),// + INTEGER_POLICY_P3_DAYS(ParameterType.CAMPAIGN_POLICIES, "Number of days between 2 impacts for P3 Policy", "Number of days between 2 impacts when looking for msisdn in full database for P3 Policy"),// + INTEGER_POLICY_P4_DAYS(ParameterType.CAMPAIGN_POLICIES, "Number of days between 2 impacts for P4 Policy", "Number of days between 2 impacts when looking for msisdn in full database for P4 Policy"),// + INTEGER_POLICY_P5_DAYS(ParameterType.CAMPAIGN_POLICIES, "Number of days between 2 impacts for P5 Policy", "Number of days between 2 impacts when looking for msisdn in full database for P5 Policy"),// + + STRING_POLICY_P0_IMPACT_LIMIT(ParameterType.CAMPAIGN_POLICIES, "Max number of impacts per periodicity for P0 Policy", "Max number of impacts per periodicity for P0 Policy when using lists in campaigns. Ex 3/DAY, 10/WEEK, 5/MONTH"),// + STRING_POLICY_P1_IMPACT_LIMIT(ParameterType.CAMPAIGN_POLICIES, "Max number of impacts per periodicity for P1 Policy", "Max number of impacts per periodicity for P1 Policy when using lists in campaigns. Ex 3/DAY, 10/WEEK, 5/MONTH"),// + STRING_POLICY_P2_IMPACT_LIMIT(ParameterType.CAMPAIGN_POLICIES, "Max number of impacts per periodicity for P2 Policy", "Max number of impacts per periodicity for P2 Policy when using lists in campaigns. Ex 3/DAY, 10/WEEK, 5/MONTH"),// + STRING_POLICY_P3_IMPACT_LIMIT(ParameterType.CAMPAIGN_POLICIES, "Max number of impacts per periodicity for P3 Policy", "Max number of impacts per periodicity for P3 Policy when using lists in campaigns. Ex 3/DAY, 10/WEEK, 5/MONTH"),// + STRING_POLICY_P4_IMPACT_LIMIT(ParameterType.CAMPAIGN_POLICIES, "Max number of impacts per periodicity for P4 Policy", "Max number of impacts per periodicity for P4 Policy when using lists in campaigns. Ex 3/DAY, 10/WEEK, 5/MONTH"),// + STRING_POLICY_P5_IMPACT_LIMIT(ParameterType.CAMPAIGN_POLICIES, "Max number of impacts per periodicity for P5 Policy", "Max number of impacts per periodicity for P5 Policy when using lists in campaigns. Ex 3/DAY, 10/WEEK, 5/MONTH"),// /* * Device API & TAC DB Update diff --git a/src/main/java/com/mobiera/ms/mno/aircast/api/SimStatVO.java b/src/main/java/com/mobiera/ms/mno/aircast/api/SimStatVO.java index 0086865..b75312c 100644 --- a/src/main/java/com/mobiera/ms/mno/aircast/api/SimStatVO.java +++ b/src/main/java/com/mobiera/ms/mno/aircast/api/SimStatVO.java @@ -27,6 +27,9 @@ public class SimStatVO implements Serializable { private Long p0AvUsers = 0l; private Long p1AvUsers = 0l; private Long p2AvUsers = 0l; + private Long p3AvUsers = 0l; + private Long p4AvUsers = 0l; + private Long p5AvUsers = 0l; private Long p0AvUsers_mnoAdTrue = 0l; private Long p0AvUsers_mnoAdFalse = 0l; @@ -50,6 +53,28 @@ public class SimStatVO implements Serializable { private Long p2AvUsers_tpAdNull = 0l; + private Long p3AvUsers_mnoAdTrue = 0l; + private Long p3AvUsers_mnoAdFalse = 0l; + private Long p3AvUsers_mnoAdNull = 0l; + private Long p3AvUsers_tpAdTrue = 0l; + private Long p3AvUsers_tpAdFalse = 0l; + private Long p3AvUsers_tpAdNull = 0l; + + private Long p4AvUsers_mnoAdTrue = 0l; + private Long p4AvUsers_mnoAdFalse = 0l; + private Long p4AvUsers_mnoAdNull = 0l; + private Long p4AvUsers_tpAdTrue = 0l; + private Long p4AvUsers_tpAdFalse = 0l; + private Long p4AvUsers_tpAdNull = 0l; + + private Long p5AvUsers_mnoAdTrue = 0l; + private Long p5AvUsers_mnoAdFalse = 0l; + private Long p5AvUsers_mnoAdNull = 0l; + private Long p5AvUsers_tpAdTrue = 0l; + private Long p5AvUsers_tpAdFalse = 0l; + private Long p5AvUsers_tpAdNull = 0l; + + private Long mnoAdAllowed_true = 0l; private Long mnoAdAllowed_false = 0l; private Long mnoAdAllowed_null = 0l; @@ -72,6 +97,9 @@ public class SimStatVO implements Serializable { private Long stk_p0AvUsers = 0l; private Long stk_p1AvUsers = 0l; private Long stk_p2AvUsers = 0l; + private Long stk_p3AvUsers = 0l; + private Long stk_p4AvUsers = 0l; + private Long stk_p5AvUsers = 0l; private Long stk_p0AvUsers_mnoAdTrue = 0l; private Long stk_p0AvUsers_mnoAdFalse = 0l; @@ -94,6 +122,26 @@ public class SimStatVO implements Serializable { private Long stk_p2AvUsers_tpAdFalse = 0l; private Long stk_p2AvUsers_tpAdNull = 0l; + private Long stk_p3AvUsers_mnoAdTrue = 0l; + private Long stk_p3AvUsers_mnoAdFalse = 0l; + private Long stk_p3AvUsers_mnoAdNull = 0l; + private Long stk_p3AvUsers_tpAdTrue = 0l; + private Long stk_p3AvUsers_tpAdFalse = 0l; + private Long stk_p3AvUsers_tpAdNull = 0l; + + private Long stk_p4AvUsers_mnoAdTrue = 0l; + private Long stk_p4AvUsers_mnoAdFalse = 0l; + private Long stk_p4AvUsers_mnoAdNull = 0l; + private Long stk_p4AvUsers_tpAdTrue = 0l; + private Long stk_p4AvUsers_tpAdFalse = 0l; + private Long stk_p4AvUsers_tpAdNull = 0l; + + private Long stk_p5AvUsers_mnoAdTrue = 0l; + private Long stk_p5AvUsers_mnoAdFalse = 0l; + private Long stk_p5AvUsers_mnoAdNull = 0l; + private Long stk_p5AvUsers_tpAdTrue = 0l; + private Long stk_p5AvUsers_tpAdFalse = 0l; + private Long stk_p5AvUsers_tpAdNull = 0l; private Long stk_mnoAdAllowed_true = 0l; @@ -110,6 +158,9 @@ public class SimStatVO implements Serializable { private Long sleepy_p0AvUsers = 0l; private Long sleepy_p1AvUsers = 0l; private Long sleepy_p2AvUsers = 0l; + private Long sleepy_p3AvUsers = 0l; + private Long sleepy_p4AvUsers = 0l; + private Long sleepy_p5AvUsers = 0l; private Long sleepy_p0AvUsers_mnoAdTrue = 0l; private Long sleepy_p0AvUsers_mnoAdFalse = 0l; @@ -132,6 +183,26 @@ public class SimStatVO implements Serializable { private Long sleepy_p2AvUsers_tpAdFalse = 0l; private Long sleepy_p2AvUsers_tpAdNull = 0l; + private Long sleepy_p3AvUsers_mnoAdTrue = 0l; + private Long sleepy_p3AvUsers_mnoAdFalse = 0l; + private Long sleepy_p3AvUsers_mnoAdNull = 0l; + private Long sleepy_p3AvUsers_tpAdTrue = 0l; + private Long sleepy_p3AvUsers_tpAdFalse = 0l; + private Long sleepy_p3AvUsers_tpAdNull = 0l; + + private Long sleepy_p4AvUsers_mnoAdTrue = 0l; + private Long sleepy_p4AvUsers_mnoAdFalse = 0l; + private Long sleepy_p4AvUsers_mnoAdNull = 0l; + private Long sleepy_p4AvUsers_tpAdTrue = 0l; + private Long sleepy_p4AvUsers_tpAdFalse = 0l; + private Long sleepy_p4AvUsers_tpAdNull = 0l; + + private Long sleepy_p5AvUsers_mnoAdTrue = 0l; + private Long sleepy_p5AvUsers_mnoAdFalse = 0l; + private Long sleepy_p5AvUsers_mnoAdNull = 0l; + private Long sleepy_p5AvUsers_tpAdTrue = 0l; + private Long sleepy_p5AvUsers_tpAdFalse = 0l; + private Long sleepy_p5AvUsers_tpAdNull = 0l; private Long sleepy_mnoAdAllowed_true = 0l; @@ -705,6 +776,384 @@ public Long getSleepy_tpAdAllowed_null() { public void setSleepy_tpAdAllowed_null(Long sleepy_tpAdAllowed_null) { this.sleepy_tpAdAllowed_null = sleepy_tpAdAllowed_null; } + public Long getP3AvUsers_mnoAdTrue() { + return p3AvUsers_mnoAdTrue; + } + public void setP3AvUsers_mnoAdTrue(Long p3AvUsers_mnoAdTrue) { + this.p3AvUsers_mnoAdTrue = p3AvUsers_mnoAdTrue; + } + public Long getP3AvUsers_mnoAdFalse() { + return p3AvUsers_mnoAdFalse; + } + public void setP3AvUsers_mnoAdFalse(Long p3AvUsers_mnoAdFalse) { + this.p3AvUsers_mnoAdFalse = p3AvUsers_mnoAdFalse; + } + public Long getP3AvUsers_mnoAdNull() { + return p3AvUsers_mnoAdNull; + } + public void setP3AvUsers_mnoAdNull(Long p3AvUsers_mnoAdNull) { + this.p3AvUsers_mnoAdNull = p3AvUsers_mnoAdNull; + } + public Long getP3AvUsers_tpAdTrue() { + return p3AvUsers_tpAdTrue; + } + public void setP3AvUsers_tpAdTrue(Long p3AvUsers_tpAdTrue) { + this.p3AvUsers_tpAdTrue = p3AvUsers_tpAdTrue; + } + public Long getP3AvUsers_tpAdFalse() { + return p3AvUsers_tpAdFalse; + } + public void setP3AvUsers_tpAdFalse(Long p3AvUsers_tpAdFalse) { + this.p3AvUsers_tpAdFalse = p3AvUsers_tpAdFalse; + } + public Long getP3AvUsers_tpAdNull() { + return p3AvUsers_tpAdNull; + } + public void setP3AvUsers_tpAdNull(Long p3AvUsers_tpAdNull) { + this.p3AvUsers_tpAdNull = p3AvUsers_tpAdNull; + } + public Long getP4AvUsers_mnoAdTrue() { + return p4AvUsers_mnoAdTrue; + } + public void setP4AvUsers_mnoAdTrue(Long p4AvUsers_mnoAdTrue) { + this.p4AvUsers_mnoAdTrue = p4AvUsers_mnoAdTrue; + } + public Long getP4AvUsers_mnoAdFalse() { + return p4AvUsers_mnoAdFalse; + } + public void setP4AvUsers_mnoAdFalse(Long p4AvUsers_mnoAdFalse) { + this.p4AvUsers_mnoAdFalse = p4AvUsers_mnoAdFalse; + } + public Long getP4AvUsers_mnoAdNull() { + return p4AvUsers_mnoAdNull; + } + public void setP4AvUsers_mnoAdNull(Long p4AvUsers_mnoAdNull) { + this.p4AvUsers_mnoAdNull = p4AvUsers_mnoAdNull; + } + public Long getP4AvUsers_tpAdTrue() { + return p4AvUsers_tpAdTrue; + } + public void setP4AvUsers_tpAdTrue(Long p4AvUsers_tpAdTrue) { + this.p4AvUsers_tpAdTrue = p4AvUsers_tpAdTrue; + } + public Long getP4AvUsers_tpAdFalse() { + return p4AvUsers_tpAdFalse; + } + public void setP4AvUsers_tpAdFalse(Long p4AvUsers_tpAdFalse) { + this.p4AvUsers_tpAdFalse = p4AvUsers_tpAdFalse; + } + public Long getP4AvUsers_tpAdNull() { + return p4AvUsers_tpAdNull; + } + public void setP4AvUsers_tpAdNull(Long p4AvUsers_tpAdNull) { + this.p4AvUsers_tpAdNull = p4AvUsers_tpAdNull; + } + public Long getP5AvUsers_mnoAdTrue() { + return p5AvUsers_mnoAdTrue; + } + public void setP5AvUsers_mnoAdTrue(Long p5AvUsers_mnoAdTrue) { + this.p5AvUsers_mnoAdTrue = p5AvUsers_mnoAdTrue; + } + public Long getP5AvUsers_mnoAdFalse() { + return p5AvUsers_mnoAdFalse; + } + public void setP5AvUsers_mnoAdFalse(Long p5AvUsers_mnoAdFalse) { + this.p5AvUsers_mnoAdFalse = p5AvUsers_mnoAdFalse; + } + public Long getP5AvUsers_mnoAdNull() { + return p5AvUsers_mnoAdNull; + } + public void setP5AvUsers_mnoAdNull(Long p5AvUsers_mnoAdNull) { + this.p5AvUsers_mnoAdNull = p5AvUsers_mnoAdNull; + } + public Long getP5AvUsers_tpAdTrue() { + return p5AvUsers_tpAdTrue; + } + public void setP5AvUsers_tpAdTrue(Long p5AvUsers_tpAdTrue) { + this.p5AvUsers_tpAdTrue = p5AvUsers_tpAdTrue; + } + public Long getP5AvUsers_tpAdFalse() { + return p5AvUsers_tpAdFalse; + } + public void setP5AvUsers_tpAdFalse(Long p5AvUsers_tpAdFalse) { + this.p5AvUsers_tpAdFalse = p5AvUsers_tpAdFalse; + } + public Long getP5AvUsers_tpAdNull() { + return p5AvUsers_tpAdNull; + } + public void setP5AvUsers_tpAdNull(Long p5AvUsers_tpAdNull) { + this.p5AvUsers_tpAdNull = p5AvUsers_tpAdNull; + } + public Long getStk_p3AvUsers() { + return stk_p3AvUsers; + } + public void setStk_p3AvUsers(Long stk_p3AvUsers) { + this.stk_p3AvUsers = stk_p3AvUsers; + } + public Long getStk_p4AvUsers() { + return stk_p4AvUsers; + } + public void setStk_p4AvUsers(Long stk_p4AvUsers) { + this.stk_p4AvUsers = stk_p4AvUsers; + } + public Long getStk_p5AvUsers() { + return stk_p5AvUsers; + } + public void setStk_p5AvUsers(Long stk_p5AvUsers) { + this.stk_p5AvUsers = stk_p5AvUsers; + } + public Long getStk_p3AvUsers_mnoAdTrue() { + return stk_p3AvUsers_mnoAdTrue; + } + public void setStk_p3AvUsers_mnoAdTrue(Long stk_p3AvUsers_mnoAdTrue) { + this.stk_p3AvUsers_mnoAdTrue = stk_p3AvUsers_mnoAdTrue; + } + public Long getStk_p3AvUsers_mnoAdFalse() { + return stk_p3AvUsers_mnoAdFalse; + } + public void setStk_p3AvUsers_mnoAdFalse(Long stk_p3AvUsers_mnoAdFalse) { + this.stk_p3AvUsers_mnoAdFalse = stk_p3AvUsers_mnoAdFalse; + } + public Long getStk_p3AvUsers_mnoAdNull() { + return stk_p3AvUsers_mnoAdNull; + } + public void setStk_p3AvUsers_mnoAdNull(Long stk_p3AvUsers_mnoAdNull) { + this.stk_p3AvUsers_mnoAdNull = stk_p3AvUsers_mnoAdNull; + } + public Long getStk_p3AvUsers_tpAdTrue() { + return stk_p3AvUsers_tpAdTrue; + } + public void setStk_p3AvUsers_tpAdTrue(Long stk_p3AvUsers_tpAdTrue) { + this.stk_p3AvUsers_tpAdTrue = stk_p3AvUsers_tpAdTrue; + } + public Long getStk_p3AvUsers_tpAdFalse() { + return stk_p3AvUsers_tpAdFalse; + } + public void setStk_p3AvUsers_tpAdFalse(Long stk_p3AvUsers_tpAdFalse) { + this.stk_p3AvUsers_tpAdFalse = stk_p3AvUsers_tpAdFalse; + } + public Long getStk_p3AvUsers_tpAdNull() { + return stk_p3AvUsers_tpAdNull; + } + public void setStk_p3AvUsers_tpAdNull(Long stk_p3AvUsers_tpAdNull) { + this.stk_p3AvUsers_tpAdNull = stk_p3AvUsers_tpAdNull; + } + public Long getStk_p4AvUsers_mnoAdTrue() { + return stk_p4AvUsers_mnoAdTrue; + } + public void setStk_p4AvUsers_mnoAdTrue(Long stk_p4AvUsers_mnoAdTrue) { + this.stk_p4AvUsers_mnoAdTrue = stk_p4AvUsers_mnoAdTrue; + } + public Long getStk_p4AvUsers_mnoAdFalse() { + return stk_p4AvUsers_mnoAdFalse; + } + public void setStk_p4AvUsers_mnoAdFalse(Long stk_p4AvUsers_mnoAdFalse) { + this.stk_p4AvUsers_mnoAdFalse = stk_p4AvUsers_mnoAdFalse; + } + public Long getStk_p4AvUsers_mnoAdNull() { + return stk_p4AvUsers_mnoAdNull; + } + public void setStk_p4AvUsers_mnoAdNull(Long stk_p4AvUsers_mnoAdNull) { + this.stk_p4AvUsers_mnoAdNull = stk_p4AvUsers_mnoAdNull; + } + public Long getStk_p4AvUsers_tpAdTrue() { + return stk_p4AvUsers_tpAdTrue; + } + public void setStk_p4AvUsers_tpAdTrue(Long stk_p4AvUsers_tpAdTrue) { + this.stk_p4AvUsers_tpAdTrue = stk_p4AvUsers_tpAdTrue; + } + public Long getStk_p4AvUsers_tpAdFalse() { + return stk_p4AvUsers_tpAdFalse; + } + public void setStk_p4AvUsers_tpAdFalse(Long stk_p4AvUsers_tpAdFalse) { + this.stk_p4AvUsers_tpAdFalse = stk_p4AvUsers_tpAdFalse; + } + public Long getStk_p4AvUsers_tpAdNull() { + return stk_p4AvUsers_tpAdNull; + } + public void setStk_p4AvUsers_tpAdNull(Long stk_p4AvUsers_tpAdNull) { + this.stk_p4AvUsers_tpAdNull = stk_p4AvUsers_tpAdNull; + } + public Long getStk_p5AvUsers_mnoAdTrue() { + return stk_p5AvUsers_mnoAdTrue; + } + public void setStk_p5AvUsers_mnoAdTrue(Long stk_p5AvUsers_mnoAdTrue) { + this.stk_p5AvUsers_mnoAdTrue = stk_p5AvUsers_mnoAdTrue; + } + public Long getStk_p5AvUsers_mnoAdFalse() { + return stk_p5AvUsers_mnoAdFalse; + } + public void setStk_p5AvUsers_mnoAdFalse(Long stk_p5AvUsers_mnoAdFalse) { + this.stk_p5AvUsers_mnoAdFalse = stk_p5AvUsers_mnoAdFalse; + } + public Long getStk_p5AvUsers_mnoAdNull() { + return stk_p5AvUsers_mnoAdNull; + } + public void setStk_p5AvUsers_mnoAdNull(Long stk_p5AvUsers_mnoAdNull) { + this.stk_p5AvUsers_mnoAdNull = stk_p5AvUsers_mnoAdNull; + } + public Long getStk_p5AvUsers_tpAdTrue() { + return stk_p5AvUsers_tpAdTrue; + } + public void setStk_p5AvUsers_tpAdTrue(Long stk_p5AvUsers_tpAdTrue) { + this.stk_p5AvUsers_tpAdTrue = stk_p5AvUsers_tpAdTrue; + } + public Long getStk_p5AvUsers_tpAdFalse() { + return stk_p5AvUsers_tpAdFalse; + } + public void setStk_p5AvUsers_tpAdFalse(Long stk_p5AvUsers_tpAdFalse) { + this.stk_p5AvUsers_tpAdFalse = stk_p5AvUsers_tpAdFalse; + } + public Long getStk_p5AvUsers_tpAdNull() { + return stk_p5AvUsers_tpAdNull; + } + public void setStk_p5AvUsers_tpAdNull(Long stk_p5AvUsers_tpAdNull) { + this.stk_p5AvUsers_tpAdNull = stk_p5AvUsers_tpAdNull; + } + public Long getSleepy_p3AvUsers() { + return sleepy_p3AvUsers; + } + public void setSleepy_p3AvUsers(Long sleepy_p3AvUsers) { + this.sleepy_p3AvUsers = sleepy_p3AvUsers; + } + public Long getSleepy_p4AvUsers() { + return sleepy_p4AvUsers; + } + public void setSleepy_p4AvUsers(Long sleepy_p4AvUsers) { + this.sleepy_p4AvUsers = sleepy_p4AvUsers; + } + public Long getSleepy_p5AvUsers() { + return sleepy_p5AvUsers; + } + public void setSleepy_p5AvUsers(Long sleepy_p5AvUsers) { + this.sleepy_p5AvUsers = sleepy_p5AvUsers; + } + public Long getSleepy_p3AvUsers_mnoAdTrue() { + return sleepy_p3AvUsers_mnoAdTrue; + } + public void setSleepy_p3AvUsers_mnoAdTrue(Long sleepy_p3AvUsers_mnoAdTrue) { + this.sleepy_p3AvUsers_mnoAdTrue = sleepy_p3AvUsers_mnoAdTrue; + } + public Long getSleepy_p3AvUsers_mnoAdFalse() { + return sleepy_p3AvUsers_mnoAdFalse; + } + public void setSleepy_p3AvUsers_mnoAdFalse(Long sleepy_p3AvUsers_mnoAdFalse) { + this.sleepy_p3AvUsers_mnoAdFalse = sleepy_p3AvUsers_mnoAdFalse; + } + public Long getSleepy_p3AvUsers_mnoAdNull() { + return sleepy_p3AvUsers_mnoAdNull; + } + public void setSleepy_p3AvUsers_mnoAdNull(Long sleepy_p3AvUsers_mnoAdNull) { + this.sleepy_p3AvUsers_mnoAdNull = sleepy_p3AvUsers_mnoAdNull; + } + public Long getSleepy_p3AvUsers_tpAdTrue() { + return sleepy_p3AvUsers_tpAdTrue; + } + public void setSleepy_p3AvUsers_tpAdTrue(Long sleepy_p3AvUsers_tpAdTrue) { + this.sleepy_p3AvUsers_tpAdTrue = sleepy_p3AvUsers_tpAdTrue; + } + public Long getSleepy_p3AvUsers_tpAdFalse() { + return sleepy_p3AvUsers_tpAdFalse; + } + public void setSleepy_p3AvUsers_tpAdFalse(Long sleepy_p3AvUsers_tpAdFalse) { + this.sleepy_p3AvUsers_tpAdFalse = sleepy_p3AvUsers_tpAdFalse; + } + public Long getSleepy_p3AvUsers_tpAdNull() { + return sleepy_p3AvUsers_tpAdNull; + } + public void setSleepy_p3AvUsers_tpAdNull(Long sleepy_p3AvUsers_tpAdNull) { + this.sleepy_p3AvUsers_tpAdNull = sleepy_p3AvUsers_tpAdNull; + } + public Long getSleepy_p4AvUsers_mnoAdTrue() { + return sleepy_p4AvUsers_mnoAdTrue; + } + public void setSleepy_p4AvUsers_mnoAdTrue(Long sleepy_p4AvUsers_mnoAdTrue) { + this.sleepy_p4AvUsers_mnoAdTrue = sleepy_p4AvUsers_mnoAdTrue; + } + public Long getSleepy_p4AvUsers_mnoAdFalse() { + return sleepy_p4AvUsers_mnoAdFalse; + } + public void setSleepy_p4AvUsers_mnoAdFalse(Long sleepy_p4AvUsers_mnoAdFalse) { + this.sleepy_p4AvUsers_mnoAdFalse = sleepy_p4AvUsers_mnoAdFalse; + } + public Long getSleepy_p4AvUsers_mnoAdNull() { + return sleepy_p4AvUsers_mnoAdNull; + } + public void setSleepy_p4AvUsers_mnoAdNull(Long sleepy_p4AvUsers_mnoAdNull) { + this.sleepy_p4AvUsers_mnoAdNull = sleepy_p4AvUsers_mnoAdNull; + } + public Long getSleepy_p4AvUsers_tpAdTrue() { + return sleepy_p4AvUsers_tpAdTrue; + } + public void setSleepy_p4AvUsers_tpAdTrue(Long sleepy_p4AvUsers_tpAdTrue) { + this.sleepy_p4AvUsers_tpAdTrue = sleepy_p4AvUsers_tpAdTrue; + } + public Long getSleepy_p4AvUsers_tpAdFalse() { + return sleepy_p4AvUsers_tpAdFalse; + } + public void setSleepy_p4AvUsers_tpAdFalse(Long sleepy_p4AvUsers_tpAdFalse) { + this.sleepy_p4AvUsers_tpAdFalse = sleepy_p4AvUsers_tpAdFalse; + } + public Long getSleepy_p4AvUsers_tpAdNull() { + return sleepy_p4AvUsers_tpAdNull; + } + public void setSleepy_p4AvUsers_tpAdNull(Long sleepy_p4AvUsers_tpAdNull) { + this.sleepy_p4AvUsers_tpAdNull = sleepy_p4AvUsers_tpAdNull; + } + public Long getSleepy_p5AvUsers_mnoAdTrue() { + return sleepy_p5AvUsers_mnoAdTrue; + } + public void setSleepy_p5AvUsers_mnoAdTrue(Long sleepy_p5AvUsers_mnoAdTrue) { + this.sleepy_p5AvUsers_mnoAdTrue = sleepy_p5AvUsers_mnoAdTrue; + } + public Long getSleepy_p5AvUsers_mnoAdFalse() { + return sleepy_p5AvUsers_mnoAdFalse; + } + public void setSleepy_p5AvUsers_mnoAdFalse(Long sleepy_p5AvUsers_mnoAdFalse) { + this.sleepy_p5AvUsers_mnoAdFalse = sleepy_p5AvUsers_mnoAdFalse; + } + public Long getSleepy_p5AvUsers_mnoAdNull() { + return sleepy_p5AvUsers_mnoAdNull; + } + public void setSleepy_p5AvUsers_mnoAdNull(Long sleepy_p5AvUsers_mnoAdNull) { + this.sleepy_p5AvUsers_mnoAdNull = sleepy_p5AvUsers_mnoAdNull; + } + public Long getSleepy_p5AvUsers_tpAdTrue() { + return sleepy_p5AvUsers_tpAdTrue; + } + public void setSleepy_p5AvUsers_tpAdTrue(Long sleepy_p5AvUsers_tpAdTrue) { + this.sleepy_p5AvUsers_tpAdTrue = sleepy_p5AvUsers_tpAdTrue; + } + public Long getSleepy_p5AvUsers_tpAdFalse() { + return sleepy_p5AvUsers_tpAdFalse; + } + public void setSleepy_p5AvUsers_tpAdFalse(Long sleepy_p5AvUsers_tpAdFalse) { + this.sleepy_p5AvUsers_tpAdFalse = sleepy_p5AvUsers_tpAdFalse; + } + public Long getSleepy_p5AvUsers_tpAdNull() { + return sleepy_p5AvUsers_tpAdNull; + } + public void setSleepy_p5AvUsers_tpAdNull(Long sleepy_p5AvUsers_tpAdNull) { + this.sleepy_p5AvUsers_tpAdNull = sleepy_p5AvUsers_tpAdNull; + } + public Long getP3AvUsers() { + return p3AvUsers; + } + public void setP3AvUsers(Long p3AvUsers) { + this.p3AvUsers = p3AvUsers; + } + public Long getP4AvUsers() { + return p4AvUsers; + } + public void setP4AvUsers(Long p4AvUsers) { + this.p4AvUsers = p4AvUsers; + } + public Long getP5AvUsers() { + return p5AvUsers; + } + public void setP5AvUsers(Long p5AvUsers) { + this.p5AvUsers = p5AvUsers; + } diff --git a/src/main/java/com/mobiera/ms/mno/aircast/api/ms/SimMS.java b/src/main/java/com/mobiera/ms/mno/aircast/api/ms/SimMS.java index fe3f1e6..21f7106 100644 --- a/src/main/java/com/mobiera/ms/mno/aircast/api/ms/SimMS.java +++ b/src/main/java/com/mobiera/ms/mno/aircast/api/ms/SimMS.java @@ -99,6 +99,18 @@ public class SimMS implements Serializable { + private Instant lastP3SentTs; + private Instant nextP3ScheduleTs; + private Instant lastP3SuccessTs; + private Instant lastP4SentTs; + private Instant nextP4ScheduleTs; + private Instant lastP4SuccessTs; + private Instant lastP5SentTs; + private Instant nextP5ScheduleTs; + private Instant lastP5SuccessTs; + + + public Long getId() { return id; } @@ -412,6 +424,60 @@ public Boolean getSleepyCipherDiscovery() { public void setSleepyCipherDiscovery(Boolean sleepyCipherDiscovery) { this.sleepyCipherDiscovery = sleepyCipherDiscovery; } + public Instant getLastP3SentTs() { + return lastP3SentTs; + } + public void setLastP3SentTs(Instant lastP3SentTs) { + this.lastP3SentTs = lastP3SentTs; + } + public Instant getNextP3ScheduleTs() { + return nextP3ScheduleTs; + } + public void setNextP3ScheduleTs(Instant nextP3ScheduleTs) { + this.nextP3ScheduleTs = nextP3ScheduleTs; + } + public Instant getLastP3SuccessTs() { + return lastP3SuccessTs; + } + public void setLastP3SuccessTs(Instant lastP3SuccessTs) { + this.lastP3SuccessTs = lastP3SuccessTs; + } + public Instant getLastP4SentTs() { + return lastP4SentTs; + } + public void setLastP4SentTs(Instant lastP4SentTs) { + this.lastP4SentTs = lastP4SentTs; + } + public Instant getNextP4ScheduleTs() { + return nextP4ScheduleTs; + } + public void setNextP4ScheduleTs(Instant nextP4ScheduleTs) { + this.nextP4ScheduleTs = nextP4ScheduleTs; + } + public Instant getLastP4SuccessTs() { + return lastP4SuccessTs; + } + public void setLastP4SuccessTs(Instant lastP4SuccessTs) { + this.lastP4SuccessTs = lastP4SuccessTs; + } + public Instant getLastP5SentTs() { + return lastP5SentTs; + } + public void setLastP5SentTs(Instant lastP5SentTs) { + this.lastP5SentTs = lastP5SentTs; + } + public Instant getNextP5ScheduleTs() { + return nextP5ScheduleTs; + } + public void setNextP5ScheduleTs(Instant nextP5ScheduleTs) { + this.nextP5ScheduleTs = nextP5ScheduleTs; + } + public Instant getLastP5SuccessTs() { + return lastP5SuccessTs; + } + public void setLastP5SuccessTs(Instant lastP5SuccessTs) { + this.lastP5SuccessTs = lastP5SuccessTs; + }