本文整理汇总了Java中lucee.runtime.Component.ACCESS_PUBLIC属性的典型用法代码示例。如果您正苦于以下问题:Java Component.ACCESS_PUBLIC属性的具体用法?Java Component.ACCESS_PUBLIC怎么用?Java Component.ACCESS_PUBLIC使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类lucee.runtime.Component
的用法示例。
在下文中一共展示了Component.ACCESS_PUBLIC属性的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: BIF
public BIF(PageContext pc,String name) throws ApplicationException{
super(Component.ACCESS_PUBLIC);
ci=(ConfigImpl) pc.getConfig();
FunctionLib fl = ci.getCombinedFLDs(pc.getCurrentTemplateDialect());
flf = fl.getFunction(name);
// BIF not found
if(flf==null) {
Key[] keys = CollectionUtil.toKeys(fl.getFunctions().keySet());
throw new ApplicationException(ExceptionUtil.similarKeyMessage(keys, name, "build in function", "build in functions",null, false));
}
try {
this.id=Hash.md5(name);
}
catch (NoSuchAlgorithmException e) {
this.id=name;
}
}
示例2: init
@Override
public void init(Map arguments){
forceCFCLower=Caster.toBooleanValue(arguments.get("force-cfc-lowercase"),false);
forceQueryLower=Caster.toBooleanValue(arguments.get("force-query-lowercase"),false);
forceStructLower=Caster.toBooleanValue(arguments.get("force-struct-lowercase"),false);
// method access level
String str=Caster.toString(arguments.get("method-access-level"),"remote");
if("private".equalsIgnoreCase(str))methodAccessLevel=Component.ACCESS_PRIVATE;
else if("package".equalsIgnoreCase(str))methodAccessLevel=Component.ACCESS_PACKAGE;
else if("public".equalsIgnoreCase(str))methodAccessLevel=Component.ACCESS_PUBLIC;
else methodAccessLevel=Component.ACCESS_REMOTE;
}
示例3: UDFGSProperty
public UDFGSProperty(ComponentImpl component,String name,FunctionArgument[] arguments,short rtnType,String rtnFormat) {
super(Component.ACCESS_PUBLIC);
properties=new UDFPropertiesImpl(
component.getPageSource(),
arguments,
-1,
name,
rtnType,
rtnFormat,
false,
Component.ACCESS_PUBLIC,
true,
"",
"",
"",
Boolean.FALSE,
Boolean.FALSE,
null,
null,
null
);
this.name=name;
this.arguments=arguments;
this.component=component;
}
示例4: BIF
public BIF(Config config,String name) throws ApplicationException{
super(Component.ACCESS_PUBLIC);
ci=(ConfigImpl) config;
FunctionLib fl = ci.getCombinedFLDs();
flf = fl.getFunction(name);
// BIF not fuound
if(flf==null) {
Key[] keys = CollectionUtil.toKeys(fl.getFunctions().keySet());
throw new ApplicationException(ExceptionUtil.similarKeyMessage(keys, name, "build in function", "build in functions", false));
}
}
示例5: toIntAccess
/**
* cast a strong access definition to the int type
* @param access access type
* @return int access type
* @throws ExpressionException
*/
public static int toIntAccess(String access) throws ExpressionException {
access=StringUtil.toLowerCase(access.trim());
if(access.equals("package"))return Component.ACCESS_PACKAGE;
else if(access.equals("private"))return Component.ACCESS_PRIVATE;
else if(access.equals("public"))return Component.ACCESS_PUBLIC;
else if(access.equals("remote"))return Component.ACCESS_REMOTE;
throw new ExpressionException("invalid access type ["+access+"], access types are remote, public, package, private");
}
示例6: toStringAccess
public static String toStringAccess(int access,String defaultValue) {
switch(access) {
case Component.ACCESS_PACKAGE: return "package";
case Component.ACCESS_PRIVATE: return "private";
case Component.ACCESS_PUBLIC: return "public";
case Component.ACCESS_REMOTE: return "remote";
}
return defaultValue;
}
示例7: UDFGSProperty
public UDFGSProperty(Component component,String name,FunctionArgument[] arguments,short rtnType) {
super(Component.ACCESS_PUBLIC);
properties=UDFProperties(null,
component.getPageSource(),
arguments,
name,
rtnType
);
this.name=name;
this.arguments=arguments;
this.component=component;
}
示例8: toIntAccess
/**
* cast a strong access definition to the int type
* @param access access type
* @return int access type
* @throws ExpressionException
*/
public static int toIntAccess(String access) throws ApplicationException {
access=StringUtil.toLowerCase(access.trim());
if(access.equals("package"))return Component.ACCESS_PACKAGE;
else if(access.equals("private"))return Component.ACCESS_PRIVATE;
else if(access.equals("public"))return Component.ACCESS_PUBLIC;
else if(access.equals("remote"))return Component.ACCESS_REMOTE;
throw new ApplicationException("invalid access type ["+access+"], access types are remote, public, package, private");
}
示例9: getAccess
@Override
public int getAccess() {
return Component.ACCESS_PUBLIC;
}