You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lens.apache.org by ra...@apache.org on 2018/08/09 07:56:26 UTC

[2/2] lens git commit: LENS-1526 : Lens api to display number of sessions created per user

LENS-1526 : Lens api to display number of sessions created per user


Project: http://git-wip-us.apache.org/repos/asf/lens/repo
Commit: http://git-wip-us.apache.org/repos/asf/lens/commit/ac2f6e88
Tree: http://git-wip-us.apache.org/repos/asf/lens/tree/ac2f6e88
Diff: http://git-wip-us.apache.org/repos/asf/lens/diff/ac2f6e88

Branch: refs/heads/master
Commit: ac2f6e8849a6d29becf023422591cf66681d289d
Parents: 4350540
Author: Rajitha R <ra...@apache.org>
Authored: Thu Aug 9 13:25:42 2018 +0530
Committer: Rajitha.R <ra...@IM0318-L0.corp.inmobi.com>
Committed: Thu Aug 9 13:25:42 2018 +0530

----------------------------------------------------------------------
 .../lens/api/session/SessionPerUserInfo.java    | 46 ++++++++++++++++++++
 1 file changed, 46 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lens/blob/ac2f6e88/lens-api/src/main/java/org/apache/lens/api/session/SessionPerUserInfo.java
----------------------------------------------------------------------
diff --git a/lens-api/src/main/java/org/apache/lens/api/session/SessionPerUserInfo.java b/lens-api/src/main/java/org/apache/lens/api/session/SessionPerUserInfo.java
new file mode 100644
index 0000000..3f2e113
--- /dev/null
+++ b/lens-api/src/main/java/org/apache/lens/api/session/SessionPerUserInfo.java
@@ -0,0 +1,46 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you 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.
+ */
+
+package org.apache.lens.api.session;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlRootElement;
+
+import lombok.AllArgsConstructor;
+import lombok.Data;
+import lombok.NoArgsConstructor;
+
+@Data
+@XmlRootElement
+@AllArgsConstructor
+@NoArgsConstructor
+@XmlAccessorType(XmlAccessType.FIELD)
+public class SessionPerUserInfo {
+  @XmlElement
+  private String user;
+  @XmlElement
+  private Integer sessionCount;
+
+  @Override
+  public String toString() {
+    return user + ":" + sessionCount;
+  }
+}