org.codehaus.plexus.components.io.attributes
Interface PlexusIoResourceAttributes
- All Known Implementing Classes:
- FileAttributes, Java7FileAttributes, SimpleResourceAttributes
public interface PlexusIoResourceAttributes
isOwnerReadable
boolean isOwnerReadable()
isOwnerWritable
boolean isOwnerWritable()
isOwnerExecutable
boolean isOwnerExecutable()
isGroupReadable
boolean isGroupReadable()
isGroupWritable
boolean isGroupWritable()
isGroupExecutable
boolean isGroupExecutable()
isWorldReadable
boolean isWorldReadable()
isWorldWritable
boolean isWorldWritable()
isWorldExecutable
boolean isWorldExecutable()
getUserId
Integer getUserId()
- Gets the unix user id.
- Returns:
- The unix user id, may be null ("not set"), even on unix
getGroupId
Integer getGroupId()
- Gets the unix group id.
- Returns:
- The unix group id, may be null ("not set"), even on unix
getUserName
String getUserName()
getGroupName
String getGroupName()
getOctalMode
int getOctalMode()
getOctalModeString
String getOctalModeString()
setOwnerReadable
PlexusIoResourceAttributes setOwnerReadable(boolean flag)
setOwnerWritable
PlexusIoResourceAttributes setOwnerWritable(boolean flag)
setOwnerExecutable
PlexusIoResourceAttributes setOwnerExecutable(boolean flag)
setGroupReadable
PlexusIoResourceAttributes setGroupReadable(boolean flag)
setGroupWritable
PlexusIoResourceAttributes setGroupWritable(boolean flag)
setGroupExecutable
PlexusIoResourceAttributes setGroupExecutable(boolean flag)
setWorldReadable
PlexusIoResourceAttributes setWorldReadable(boolean flag)
setWorldWritable
PlexusIoResourceAttributes setWorldWritable(boolean flag)
setWorldExecutable
PlexusIoResourceAttributes setWorldExecutable(boolean flag)
setUserId
PlexusIoResourceAttributes setUserId(Integer uid)
setGroupId
PlexusIoResourceAttributes setGroupId(Integer gid)
setUserName
PlexusIoResourceAttributes setUserName(String name)
setGroupName
PlexusIoResourceAttributes setGroupName(String name)
setOctalMode
PlexusIoResourceAttributes setOctalMode(int mode)
setOctalModeString
PlexusIoResourceAttributes setOctalModeString(String mode)
Copyright © 2001-2011 Codehaus. All Rights Reserved.