src.org.jets3t.service.acl.Permission Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jets3t Show documentation
Show all versions of jets3t Show documentation
Toolkit for Amazon S3, Amazon CloudFront, and Google Storage Service.
/*
* jets3t : Java Extra-Tasty S3 Toolkit (for Amazon S3 online storage service)
* This is a java.net project, see https://jets3t.dev.java.net/
*
* Copyright 2006 James Murty
*
* 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 org.jets3t.service.acl;
/**
* Represents an access permission, as granted to grantees in an {@link AccessControlList}.
* Only a limited set of permissions are available, each one is available as a public static
* variable in this class of the form PERMISSION_XYZ.
*
* @author James Murty
*/
public class Permission {
public static final Permission PERMISSION_FULL_CONTROL = new Permission("FULL_CONTROL");
public static final Permission PERMISSION_READ = new Permission("READ");
public static final Permission PERMISSION_WRITE = new Permission("WRITE");
public static final Permission PERMISSION_READ_ACP = new Permission("READ_ACP");
public static final Permission PERMISSION_WRITE_ACP = new Permission("WRITE_ACP");
private String permissionString = "";
private Permission(String permissionString) {
this.permissionString = permissionString;
}
/**
* @param str
* a string representation of a permission, eg FULL_CONTROL
* @return
* the Permission object represented by the given permission string
*/
public static Permission parsePermission(String str) {
Permission permission = null;
if (str == null) {
// Do nothing
} else if (str.equals(PERMISSION_FULL_CONTROL.toString())) {
permission = PERMISSION_FULL_CONTROL;
} else if (str.equals(PERMISSION_READ.toString())) {
permission = PERMISSION_READ;
} else if (str.equals(PERMISSION_WRITE.toString())) {
permission = PERMISSION_WRITE;
} else if (str.equals(PERMISSION_READ_ACP.toString())) {
permission = PERMISSION_READ_ACP;
} else if (str.equals(PERMISSION_WRITE_ACP.toString())) {
permission = PERMISSION_WRITE_ACP;
} else {
permission = null;
}
return permission;
}
/**
* @return
* the string representation of a permission object, eg FULL_CONTROL
*/
public String toString() {
return permissionString;
}
public int hashCode() {
return permissionString.hashCode();
}
public boolean equals(Object obj) {
return (obj instanceof Permission) && toString().equals(obj.toString());
}
}