/** * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 2007 Sun Microsystems Inc. All Rights Reserved * * The contents of this file are subject to the terms * of the Common Development and Distribution License * (the License). You may not use this file except in * compliance with the License. * * You can obtain a copy of the License at * https://opensso.dev.java.net/public/CDDLv1.0.html or * opensso/legal/CDDLv1.0.txt * See the License for the specific language governing * permission and limitations under the License. * * When distributing Covered Code, include this CDDL * Header Notice in each file and include the License file * at opensso/legal/CDDLv1.0.txt. * If applicable, add the following below the CDDL Header, * with the fields enclosed by brackets [] replaced by * your own identifying information: * "Portions Copyrighted [year] [name of copyright owner]" * * $Id: ResourceContent.java,v 1.2 2008/06/25 05:48:11 qcheng Exp $ * */ package com.sun.identity.xacml.context; import com.sun.identity.xacml.common.XACMLException; import java.util.List; /** * The ResourceContent element specifies information about the * resource to which access is requested by listing a * sequence of Attribute elements associated with the * resource. it may include ResourceContent *

*

 * <xs:complexType name="ResourceContentType" mixed="true">
 *   <xs:sequence>
 *      <xs:any namespace="##any" processContents="lax" minOccurs="0" 
 *         maxOccurs="unbounded"/>
 *   <xs:sequence>
 *   <xs:anyAttribute namespace="##any" processContents="lax"/>
 * <xs:complexType>
 * 
*@supported.all.api */ public interface ResourceContent { /** * Returns the resource content of the Resource * * @return String representing the contents * of the Resource. */ public String getResourceContent(); /** * Sets the resource content of this object * * @param resourceContent ResourceContent of this object * ResourceContent is optional so could be null. * are present. * * @exception XACMLException if the object is immutable * An object is considered immutable if * makeImmutable() has been invoked on it. It can * be determined by calling isMutable on the object. */ public void setResourceContent(String resourceContent) throws XACMLException; /** * Returns zero to many Attribute elements of this object * If no attributes and present, empty List will be returned. * Typically a Resource element will contain an * Attribute with an AttributeId of * "urn:oasis:names:tc:xacml:1.0:resource:resource-id". Each such * Attribute SHALL be an absolute abd fully resolved * representation of the identity of the single resource to which * access is requested. * * @return List containing the Attribute * elements of this object */ public List getAttributes(); /** * Sets the Attribute elements of this object * * @param attributes Attribute elements of this object * attributes could be an empty List, if no attributes * are present. * * @exception XACMLException if the object is immutable * An object is considered immutable if * makeImmutable() has been invoked on it. It can * be determined by calling isMutable on the object. */ public void setAttributes(List attributes) throws XACMLException; /** * Returns a String representation of this object * @param includeNSPrefix Determines whether or not the namespace qualifier * is prepended to the Element when converted * @param declareNS Determines whether or not the namespace is declared * within the Element. * @return a string representation of this object * @exception XACMLException if conversion fails for any reason */ public String toXMLString(boolean includeNSPrefix, boolean declareNS) throws XACMLException; /** * Returns a string representation of this object * * @return a string representation of this object * @exception XACMLException if conversion fails for any reason */ public String toXMLString() throws XACMLException; /** * Makes the object immutable */ public void makeImmutable(); /** * Checks if the object is mutable * * @return true if the object is mutable, * false otherwise */ public boolean isMutable(); }