当前位置: 首页>>代码示例>>Java>>正文


Java Component.ACCESS_REMOTE属性代码示例

本文整理汇总了Java中lucee.runtime.Component.ACCESS_REMOTE属性的典型用法代码示例。如果您正苦于以下问题:Java Component.ACCESS_REMOTE属性的具体用法?Java Component.ACCESS_REMOTE怎么用?Java Component.ACCESS_REMOTE使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在lucee.runtime.Component的用法示例。


在下文中一共展示了Component.ACCESS_REMOTE属性的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: 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;
	
}
 
开发者ID:lucee,项目名称:Lucee4,代码行数:13,代码来源:ClassicAMFCaster.java

示例2: 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");
       
   }
 
开发者ID:lucee,项目名称:Lucee4,代码行数:15,代码来源:ComponentUtil.java

示例3: 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;
}
 
开发者ID:lucee,项目名称:Lucee4,代码行数:9,代码来源:ComponentUtil.java

示例4: 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");
       
   }
 
开发者ID:lucee,项目名称:Lucee,代码行数:15,代码来源:ComponentUtil.java

示例5: PropertyImpl

public PropertyImpl() {
	super(Component.ACCESS_REMOTE);
}
 
开发者ID:lucee,项目名称:Lucee4,代码行数:3,代码来源:PropertyImpl.java


注:本文中的lucee.runtime.Component.ACCESS_REMOTE属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。