Skip to content

Commit

Permalink
Improved Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
evrignaud committed Oct 16, 2015
1 parent 5865630 commit 96f7059
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/main/java/org/fim/util/SELinux.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ private static boolean isEnabled()
}

/**
* Retrieve the SELinux label of the specified file
* Retrieve the SELinux label of the specified file.
*/
public static String getLabel(Path file)
{
Expand All @@ -85,6 +85,9 @@ public static String getLabel(Path file)
return null;
}

/**
* Set the SELinux label of the specified file.
*/
public static void setLabel(Path file, String label)
{
String fileName = file.normalize().toAbsolutePath().toString();
Expand Down

0 comments on commit 96f7059

Please sign in to comment.