1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
24
25 public class CoreFunctions
26 {
27
28
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 }