blob: 303973ea5dcc488c71f3d68d687fd6f78031e9d9 [file] [log] [blame]
Elliott Hughesd4419fc2011-05-12 17:22:07 -07001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Elliott Hughes5d930ca2014-04-23 17:53:37 -070017package android.system;
Elliott Hughesd4419fc2011-05-12 17:22:07 -070018
Elliott Hughesfe77f812014-04-29 17:59:30 -070019import libcore.util.Objects;
20
Elliott Hughesd4419fc2011-05-12 17:22:07 -070021/**
22 * Information returned by getpwnam(3) and getpwuid(3). Corresponds to C's
23 * {@code struct passwd} from
24 * <a href="http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/pwd.h.html">&lt;pwd.h&gt;</a>
Elliott Hughes5d930ca2014-04-23 17:53:37 -070025 *
26 * @hide
Elliott Hughesd4419fc2011-05-12 17:22:07 -070027 */
28public final class StructPasswd {
Elliott Hughesfe77f812014-04-29 17:59:30 -070029 public final String pw_name;
30 public final int pw_uid;
31 public final int pw_gid;
32 public final String pw_dir;
33 public final String pw_shell;
Elliott Hughesd4419fc2011-05-12 17:22:07 -070034
Elliott Hughesfe77f812014-04-29 17:59:30 -070035 public StructPasswd(String pw_name, int pw_uid, int pw_gid, String pw_dir, String pw_shell) {
36 this.pw_name = pw_name;
37 this.pw_uid = pw_uid;
38 this.pw_gid = pw_gid;
39 this.pw_dir = pw_dir;
40 this.pw_shell = pw_shell;
41 }
42
43 @Override public String toString() {
44 return Objects.toString(this);
45 }
Elliott Hughesd4419fc2011-05-12 17:22:07 -070046}