⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 types.java

📁 一个完整的XACML工程,学习XACML技术的好例子!
💻 JAVA
字号:
/*
* Copyright (c) 2000-2005, University of Salford
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without 
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice, this 
* list of conditions and the following disclaimer.
* 
* Redistributions in binary form must reproduce the above copyright notice, 
* this list of conditions and the following disclaimer in the documentation 
* and/or other materials provided with the distribution. 
*
* Neither the name of the University of Salford nor the names of its 
* contributors may be used to endorse or promote products derived from this 
* software without specific prior written permission. 
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 
* POSSIBILITY OF SUCH DAMAGE.
*/

package issrg.pba.rbac.xmlpolicy.ifstatement;

/**
 * This class maintains a registry of known types, so that the string encoding
 * of the values of these types can be decoded from the XML Policy. When 
 * registering the type, the impelementing class should have a constructor with
 * a single String parameter to it.
 *
 * <p>By default there are three types known: BOOLEAN_TYPE, INTEGER_TYPE and
 * STRING_TYPE ("Boolean", "Integer" and "String" respectively).
 *
 * @author A.Otenko
 */

public final class Types {
  protected final static java.util.Map knownTypes=new java.util.Hashtable();

  public final static String INTEGER_TYPE = "Integer";
  public final static String BOOLEAN_TYPE = "Boolean";
  public final static String STRING_TYPE = "String";

  static{
    registerType(INTEGER_TYPE, Integer.class);
    registerType(BOOLEAN_TYPE, Boolean.class);
    registerType(STRING_TYPE, String.class);
  }

  /**
   * This method registers a class to be used to instantiate values of the
   * given type from String encoding.
   *
   * @param type - the type of the value
   * @param c - the Class that represents the values of that type; it must
   *   have a public constructor with a single String argument
   */
  public static void registerType(String type, Class c){
    try{
      knownTypes.put(type, c.getConstructor(new Class[]{String.class}));
    }catch (NoSuchMethodException nsme){
      nsme.printStackTrace();
    }
  }

  /**
   * This is the method for building the objects of known types out of their 
   * String encoding.
   *
   * @param type is the type of the object, as it appears in the XML Policy
   * @param value is the String encoding of the object
   *
   * @return the constructed type-specific Object
   *
   * @throws EvaluationException if the constructor is not found or the value 
   *    is not
   *    properly encoded
   */
  public static Object construct(String type, String value) throws EvaluationException{
    try{
      java.lang.reflect.Constructor c = (java.lang.reflect.Constructor)(knownTypes.get(type));
      if (c==null) throw new EvaluationException("Could not build a value of type "+type+" out of \""+value+"\": no implementing Class found for this type");

      return c.newInstance(new Object[]{value});
    }catch (Throwable th){
      throw new EvaluationException("Could not build a value of type "+type+" out of \""+value+"\"", th);
    }
  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -