View Javadoc

1   /**
2    *    Copyright 2011 meltmedia
3    *
4    *    Licensed under the Apache License, Version 2.0 (the "License");
5    *    you may not use this file except in compliance with the License.
6    *    You may obtain a copy of the License at
7    *
8    *        http://www.apache.org/licenses/LICENSE-2.0
9    *
10   *    Unless required by applicable law or agreed to in writing, software
11   *    distributed under the License is distributed on an "AS IS" BASIS,
12   *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   *    See the License for the specific language governing permissions and
14   *    limitations under the License.
15   */
16  package org.xchain.namespaces.core;
17  
18  import org.xchain.framework.lifecycle.Execution;
19  import org.xchain.annotations.Function;
20  import org.apache.commons.jxpath.ExpressionContext;
21  
22  /**
23   * @author Christian Trimble
24   */
25  public class CoreFunctions
26  {
27    /**
28     * Returns the system id of the current catalog.
29     */
30    @Function(localName="system-id")
31    public static String getSystemId()
32    {
33      return Execution.getSystemId();
34    }
35  
36    @Function(localName="value-of")
37    public static Object getValueOf( ExpressionContext context, String xPath )
38    {
39      return context.getJXPathContext().getValue(xPath);
40    }
41  
42    @Function(localName="value-of")
43    public static <T> T getValueOf( ExpressionContext context, String xPath, Class<T> type )
44    {
45      return (T)context.getJXPathContext().getValue(xPath, type);
46    }
47  
48    @Function(localName="class")
49    public static Class getClass( String className )
50      throws ClassNotFoundException
51    {
52      return Thread.currentThread().getContextClassLoader().loadClass(className);
53    }
54  }