summaryrefslogtreecommitdiffstats
path: root/gerrit-gwtui/src/main/java/com/google/gerrit/client/groups/GroupInfo.java
diff options
context:
space:
mode:
Diffstat (limited to 'gerrit-gwtui/src/main/java/com/google/gerrit/client/groups/GroupInfo.java')
-rw-r--r--gerrit-gwtui/src/main/java/com/google/gerrit/client/groups/GroupInfo.java67
1 files changed, 67 insertions, 0 deletions
diff --git a/gerrit-gwtui/src/main/java/com/google/gerrit/client/groups/GroupInfo.java b/gerrit-gwtui/src/main/java/com/google/gerrit/client/groups/GroupInfo.java
new file mode 100644
index 0000000000..3b4abe5888
--- /dev/null
+++ b/gerrit-gwtui/src/main/java/com/google/gerrit/client/groups/GroupInfo.java
@@ -0,0 +1,67 @@
+// Copyright (C) 2013 The Android Open Source Project
+//
+// 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.
+
+package com.google.gerrit.client.groups;
+
+import com.google.gerrit.client.account.AccountInfo;
+import com.google.gerrit.reviewdb.client.AccountGroup;
+import com.google.gwt.core.client.JavaScriptObject;
+import com.google.gwt.core.client.JsArray;
+import com.google.gwt.http.client.URL;
+
+public class GroupInfo extends JavaScriptObject {
+ public final AccountGroup.Id getGroupId() {
+ return new AccountGroup.Id(group_id());
+ }
+
+ public final AccountGroup.UUID getGroupUUID() {
+ return new AccountGroup.UUID(URL.decodePathSegment(id()));
+ }
+
+ public final native String id() /*-{ return this.id; }-*/;
+ public final native String name() /*-{ return this.name; }-*/;
+ public final native GroupOptionsInfo options() /*-{ return this.options; }-*/;
+ public final native String description() /*-{ return this.description; }-*/;
+ public final native String url() /*-{ return this.url; }-*/;
+ public final native String owner() /*-{ return this.owner; }-*/;
+ public final native void owner(String o) /*-{ if(o)this.owner=o; }-*/;
+ public final native JsArray<AccountInfo> members() /*-{ return this.members; }-*/;
+ public final native JsArray<GroupInfo> includes() /*-{ return this.includes; }-*/;
+
+ private final native int group_id() /*-{ return this.group_id; }-*/;
+ private final native String owner_id() /*-{ return this.owner_id; }-*/;
+ private final native void owner_id(String o) /*-{ if(o)this.owner_id=o; }-*/;
+
+ public final AccountGroup.UUID getOwnerUUID() {
+ String owner = owner_id();
+ if (owner != null) {
+ return new AccountGroup.UUID(URL.decodePathSegment(owner));
+ }
+ return null;
+ }
+
+ public final void setOwnerUUID(AccountGroup.UUID uuid) {
+ owner_id(URL.encodePathSegment(uuid.get()));
+ }
+
+ protected GroupInfo() {
+ }
+
+ public static class GroupOptionsInfo extends JavaScriptObject {
+ public final native boolean isVisibleToAll() /*-{ return this['visible_to_all'] ? true : false; }-*/;
+
+ protected GroupOptionsInfo() {
+ }
+ }
+}