类 DefaultOwner

java.lang.Object
cn.taketoday.buildpack.platform.io.DefaultOwner
所有已实现的接口:
Owner

class DefaultOwner extends Object implements Owner
Default Owner implementation.
作者:
Phillip Webb
另请参阅:
  • 字段概要

    字段
    修饰符和类型
    字段
    说明
    private final long
     
    private final long
     

    从接口继承的字段 cn.taketoday.buildpack.platform.io.Owner

    ROOT
  • 构造器概要

    构造器
    构造器
    说明
    DefaultOwner(long uid, long gid)
     
  • 方法概要

    修饰符和类型
    方法
    说明
    long
    Return the group identifier (GID) of the owner.
    long
    Return the user identifier (UID) of the owner.
     

    从类继承的方法 java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • 字段详细资料

    • uid

      private final long uid
    • gid

      private final long gid
  • 构造器详细资料

    • DefaultOwner

      DefaultOwner(long uid, long gid)
  • 方法详细资料

    • getUid

      public long getUid()
      从接口复制的说明: Owner
      Return the user identifier (UID) of the owner.
      指定者:
      getUid 在接口中 Owner
      返回:
      the user identifier
    • getGid

      public long getGid()
      从接口复制的说明: Owner
      Return the group identifier (GID) of the owner.
      指定者:
      getGid 在接口中 Owner
      返回:
      the group identifier
    • toString

      public String toString()
      覆盖:
      toString 在类中 Object