/* Copyright (c) 2008 Google Inc. * * 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 com.google.gdata.data.acl; import com.google.gdata.data.BaseEntry; import com.google.gdata.data.Category; import com.google.gdata.data.Kind; import com.google.gdata.data.ExtensionProfile; import com.google.gdata.util.Namespaces; /** * Defines an entry in a feed of an access control list (ACL). * * */ @Kind.Term(AclEntry.ACCESS_RULE_KIND) public class AclEntry extends BaseEntry<AclEntry> { /** * Kind term value for access rule category. */ public static final String ACCESS_RULE_KIND = AclNamespace.gAclPrefix + "accessRule"; /** * Kind category used to label feeds or entries that have Event extension * data. */ public static final Category ACCESS_RULE_CATEGORY = new Category(Namespaces.gKind, ACCESS_RULE_KIND); /** * Default constructor for an ACL entry. */ public AclEntry() { super(); getCategories().add(ACCESS_RULE_CATEGORY); } @Override public void declareExtensions(ExtensionProfile extProfile) { extProfile.declare(AclEntry.class, AclScope.class); extProfile.declare(AclEntry.class, AclRole.class); extProfile.declare(AclEntry.class, AclWithKey.class); new AclWithKey().declareExtensions(extProfile); } public AclScope getScope() { return getExtension(AclScope.class); } public void setScope(AclScope scope) { setExtension(scope); } public AclRole getRole() { return getExtension(AclRole.class); } public void setRole(AclRole role) { setExtension(role); } public AclWithKey getWithKey() { return getExtension(AclWithKey.class); } public void setWithKey(AclWithKey withKey) { setExtension(withKey); } }