• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java DavProperty类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中org.apache.jackrabbit.webdav.property.DavProperty的典型用法代码示例。如果您正苦于以下问题:Java DavProperty类的具体用法?Java DavProperty怎么用?Java DavProperty使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



DavProperty类属于org.apache.jackrabbit.webdav.property包,在下文中一共展示了DavProperty类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: checkCalendarResourceType

import org.apache.jackrabbit.webdav.property.DavProperty; //导入依赖的package包/类
/**
 * Returns true if the resourcetype Property has a Calendar Element under it.
 *
 * @param resourcetype ResourceType Property
 * @return True if, resource is Calendar, else false.
 */
private static boolean checkCalendarResourceType(DavProperty<?> resourcetype) {
	boolean isCalendar = false;

	if (resourcetype != null) {
		DavPropertyName calProp = DavPropertyName.create("calendar", CalDAVConstants.NAMESPACE_CALDAV);

		for (Object o : (Collection<?>) resourcetype.getValue()) {
			if (o instanceof Element) {
				Element e = (Element) o;
				if (e.getLocalName().equals(calProp.getName())) {
					isCalendar = true;
				}
			}
		}
	}
	return isCalendar;
}
 
开发者ID:apache,项目名称:openmeetings,代码行数:24,代码来源:AppointmentManager.java


示例2: convertToWspaceMeta

import org.apache.jackrabbit.webdav.property.DavProperty; //导入依赖的package包/类
private WspaceMeta convertToWspaceMeta(WspaceMeta meta, MultiStatusResponse res) {
    if (meta == null) {
        meta = new WspaceMeta(getWsHome(), res.getHref().replaceFirst(getWsHome(), ""));
    }
    DavPropertySet props = res.getProperties(200);
    if (props != null) {
        for (DavProperty p : props) {
            String name = (p == null || p.getName() == null) ? null : p.getName().getName();
            if (name != null) {
                String v = String.valueOf(p.getValue());
                if (name.equals(DavConstants.PROPERTY_GETLASTMODIFIED)) {
                        meta.setLastModified(v);
                } else if (name.equals(DavConstants.PROPERTY_GETCONTENTLENGTH)) {
                    try {
                        meta.setSize(Long.parseLong(v));
                    } catch (Exception e) {}
                } else if (name.equals(DavConstants.PROPERTY_GETCONTENTTYPE)) {
                    meta.setContentType(v);
                } else if (p.getName().getNamespace().equals(IRSA_NS)) {
                    meta.setProperty(name, String.valueOf(p.getValue()));
                }
            }
        }
    }
    return meta;
}
 
开发者ID:lsst,项目名称:firefly,代码行数:27,代码来源:WorkspaceManager.java


示例3: create

import org.apache.jackrabbit.webdav.property.DavProperty; //导入依赖的package包/类
public FileContentInfo create(FileContent fileContent) throws FileSystemException
{
    WebdavFileObject file = (WebdavFileObject) (FileObjectUtils
        .getAbstractFileObject(fileContent.getFile()));

    String contentType = null;
    String contentEncoding = null;

    DavPropertyNameSet nameSet = new DavPropertyNameSet();
    nameSet.add(DavPropertyName.GETCONTENTTYPE);
    DavPropertySet propertySet = file.getProperties((URLFileName) file.getName(), nameSet, true);

    DavProperty property = propertySet.get(DavPropertyName.GETCONTENTTYPE);
    if (property != null)
    {
        contentType = (String) property.getValue();
    }
    property = propertySet.get(WebdavFileObject.RESPONSE_CHARSET);
    if (property != null)
    {
        contentEncoding = (String) property.getValue();
    }

    return new DefaultFileContentInfo(contentType, contentEncoding);
}
 
开发者ID:wso2,项目名称:wso2-commons-vfs,代码行数:26,代码来源:WebdavFileContentInfoFactory.java


示例4: isDirectory

import org.apache.jackrabbit.webdav.property.DavProperty; //导入依赖的package包/类
private boolean isDirectory(URLFileName name) throws IOException
{
    try
    {
        DavProperty property = getProperty(name, DavConstants.PROPERTY_RESOURCETYPE);
        Node node;
        if (property != null && (node = (Node) property.getValue()) != null)
        {
            return node.getLocalName().equals(DavConstants.XML_COLLECTION);
        }
        else
        {
            return false;
        }
    }
    catch (FileNotFoundException fse)
    {
        throw new FileNotFolderException(name);
    }
}
 
开发者ID:wso2,项目名称:wso2-commons-vfs,代码行数:21,代码来源:WebdavFileObject.java


示例5: alterProperties

import org.apache.jackrabbit.webdav.property.DavProperty; //导入依赖的package包/类
public MultiStatusResponse alterProperties(List changeList)
		throws DavException {
        if (!exists()) {
            throw new DavException(DavServletResponse.SC_NOT_FOUND);
        }
        
        MultiStatusResponse msr = new MultiStatusResponse(getHref(), null);
        
        Iterator it = changeList.iterator();
        while(it.hasNext()){
        	DavProperty property = (DavProperty)it.next();
        	try{
        		getUnderlineResource().setProperty(property.getName().getName(), (String)property.getValue());
        		msr.add(property, DavServletResponse.SC_OK);
        	}catch (Exception e) {
        		e.printStackTrace();
        		msr.add(property, DavServletResponse.SC_BAD_REQUEST);
			}
        }
        return msr;
        
}
 
开发者ID:wso2,项目名称:carbon-registry,代码行数:23,代码来源:RegistryResource.java


示例6: getProperty

import org.apache.jackrabbit.webdav.property.DavProperty; //导入依赖的package包/类
public DavProperty getProperty(final DavPropertyName name) {
	DavProperty property = properties.get(name);
	if(property != null){
		return property;
	}else{
		return new DavProperty() {
			public Element toXml(Document document) {
				return null;
			}
			public boolean isInvisibleInAllprop() {
				return false;
			}
			public Object getValue() {
				return getUnderlineResource().getProperty(name.getName());
			}
			public DavPropertyName getName() {
				return name;
			}
		};
	}
}
 
开发者ID:wso2,项目名称:carbon-registry,代码行数:22,代码来源:RegistryResource.java


示例7: isDirectory

import org.apache.jackrabbit.webdav.property.DavProperty; //导入依赖的package包/类
private boolean isDirectory(URLFileName name) throws IOException, DavException
{
    try
    {
        DavProperty property = getProperty(name, DavConstants.PROPERTY_RESOURCETYPE);
        Node node;
        if (property != null && (node = (Node) property.getValue()) != null)
        {
            return node.getLocalName().equals(DavConstants.XML_COLLECTION);
        }
        else
        {
            return false;
        }
    }
    catch (FileNotFoundException fse)
    {
        throw new FileNotFolderException(name);
    }
}
 
开发者ID:pentaho,项目名称:pdi-vfs,代码行数:21,代码来源:WebdavFileObject.java


示例8: getTextValuefromProperty

import org.apache.jackrabbit.webdav.property.DavProperty; //导入依赖的package包/类
private static String getTextValuefromProperty(DavProperty<?> property) {
	String value = null;

	if (property != null) {
		for (Object o : (Collection<?>) property.getValue()) {
			if (o instanceof Element) {
				Element e = (Element) o;
				value = DomUtil.getTextTrim(e);
				break;
			}
		}
	}
	return value;
}
 
开发者ID:apache,项目名称:openmeetings,代码行数:15,代码来源:AppointmentManager.java


示例9: setMeta

import org.apache.jackrabbit.webdav.property.DavProperty; //导入依赖的package包/类
/**
 * set meta information on this dav's resource.
 * if the property value is null, that property will be removed.
 * otherwise, the property will be either added or updated.
 * @param metas
 * @return
 */
public boolean setMeta(WspaceMeta ... metas) {
    if (metas == null) return false;
    for(WspaceMeta meta : metas) {

        Map<String, String> props = meta.getProperties();
        if (props != null && props.size() > 0) {
            DavPropertySet newProps=new DavPropertySet();
            DavPropertyNameSet removeProps=new DavPropertyNameSet();

            for (String key : props.keySet()) {
                String v = props.get(key);
                if (v == null) {
                    removeProps.add(DavPropertyName.create(key, IRSA_NS));
                } else {
                    DavProperty p = new DefaultDavProperty(key, props.get(key), IRSA_NS);
                    newProps.add(p);
                }
            }
            try {
                PropPatchMethod proPatch=new PropPatchMethod(getResourceUrl(meta.getRelPath()), newProps, removeProps);
                if ( !executeMethod(proPatch)) {
                    // handle error
                    System.out.println("Unable to update property:" + newProps.toString() +  " -- " + proPatch.getStatusText());
                    return false;
                }
                return true;
            } catch (IOException e) {
                LOG.error(e, "Error while setting property: " + meta);
                e.printStackTrace();
            }

        }

    }
    return false;
}
 
开发者ID:lsst,项目名称:firefly,代码行数:44,代码来源:WorkspaceManager.java


示例10: getProperty

import org.apache.jackrabbit.webdav.property.DavProperty; //导入依赖的package包/类
@Override
    public
    @Nullable
    DavProperty<?> getProperty( @Nullable DavPropertyName propertyName ) {
//        System.out.println( "prop name " + aPropertyName.getName() );
        return properties.get( propertyName );
    }
 
开发者ID:openCage,项目名称:niodav,代码行数:8,代码来源:DavPath.java


示例11: alterProperties

import org.apache.jackrabbit.webdav.property.DavProperty; //导入依赖的package包/类
@Override
    public
    @Nullable
    MultiStatusResponse alterProperties( @Nullable List<? extends PropEntry> changeList ) throws DavException {
        if( !exists() ) {
            throw new DavException( DavServletResponse.SC_NOT_FOUND );
        }

        MultiStatusResponse response = new MultiStatusResponse( getHref(), null );
        /*
         * loop over list of properties/names that were successfully altered
         * and add them to the multistatus response respecting the result of the
         * complete action. in case of failure set the status to 'failed-dependency'
         * in order to indicate, that altering those names/properties would
         * have succeeded, if no other error occurred.
         */
        for( PropEntry propEntry : n1( changeList ) ) {
            int statusCode = DavServletResponse.SC_OK;

            if( propEntry instanceof DavProperty ) {
                DavProperty<?> dprop = (DavProperty<?>) propEntry;
                if( dprop.getName().equals( new DefaultDavProperty<>( DavPropertyName.GETLASTMODIFIED, "1" ).getName() ) ) {
                    Filess.setLastModifiedTime( file, FileTime.fromMillis( LocalDateTime.parse( (String) dprop.getValue(), DateTimeFormatter.RFC_1123_DATE_TIME ).toEpochSecond( ZoneOffset.ofTotalSeconds( 0 ) ) * 1000 ) );
                }
//                response.add( ( dprop ).getName(), statusCode );
                response.add( dprop );
            } else {
                response.add( (DavPropertyName) propEntry, statusCode );
            }
        }
        return response;
    }
 
开发者ID:openCage,项目名称:niodav,代码行数:33,代码来源:DavPath.java


示例12: testGetIncludeFreeBusyRollupProperty

import org.apache.jackrabbit.webdav.property.DavProperty; //导入依赖的package包/类
/**
 * Tests get include freeBusy rollup property.
 * @throws Exception - if something is wrong this exception is thrown.
 */
@Test
public void testGetIncludeFreeBusyRollupProperty() throws Exception {
    testHelper.getHomeCollection().setExcludeFreeBusyRollup(false);
    DavCollectionBase dc = (DavCollectionBase) testHelper.initializeHomeResource();

    @SuppressWarnings("rawtypes")
    DavProperty efbr = dc.getProperty(EXCLUDEFREEBUSYROLLUP);
    Assert.assertNotNull("exclude-free-busy-rollup property not found", efbr);

    boolean flag = ((Boolean) efbr.getValue()).booleanValue();
    Assert.assertTrue("exclude-free-busy-rollup property not false", ! flag);
}
 
开发者ID:1and1,项目名称:cosmo,代码行数:17,代码来源:DavCollectionBaseTest.java


示例13: testGetExcludeFreeBusyRollupProperty

import org.apache.jackrabbit.webdav.property.DavProperty; //导入依赖的package包/类
/**
 * Tests get exclude free busy rollup porperty.
 * @throws Exception - if something is wrong this exception is thrown.
 */
@Test
public void testGetExcludeFreeBusyRollupProperty() throws Exception {
    testHelper.getHomeCollection().setExcludeFreeBusyRollup(true);
    DavCollectionBase dc = (DavCollectionBase) testHelper.initializeHomeResource();

    @SuppressWarnings("rawtypes")
    DavProperty efbr = dc.getProperty(EXCLUDEFREEBUSYROLLUP);
    Assert.assertNotNull("exclude-free-busy-rollup property not found", efbr);

    boolean flag = ((Boolean) efbr.getValue()).booleanValue();
    Assert.assertTrue("exclude-free-busy-rollup property not true", flag);
}
 
开发者ID:1and1,项目名称:cosmo,代码行数:17,代码来源:DavCollectionBaseTest.java


示例14: doGetContentSize

import org.apache.jackrabbit.webdav.property.DavProperty; //导入依赖的package包/类
/**
 * Returns the size of the file content (in bytes).
 */
@Override
protected long doGetContentSize() throws Exception
{
    DavProperty property = getProperty((URLFileName) getName(),
            DavConstants.PROPERTY_GETCONTENTLENGTH);
    if (property != null)
    {
        String value = (String) property.getValue();
        return Long.parseLong(value);
    }
    return 0;
}
 
开发者ID:wso2,项目名称:wso2-commons-vfs,代码行数:16,代码来源:WebdavFileObject.java


示例15: doGetLastModifiedTime

import org.apache.jackrabbit.webdav.property.DavProperty; //导入依赖的package包/类
/**
 * Returns the last modified time of this file.  Is only called if
 * {@link #doGetType} does not return {@link FileType#IMAGINARY}.
 */
@Override
protected long doGetLastModifiedTime() throws Exception
{
    DavProperty property = getProperty((URLFileName) getName(),
            DavConstants.PROPERTY_GETLASTMODIFIED);
    if (property != null)
    {
        String value = (String) property.getValue();
        return DateUtil.parseDate(value).getTime();
    }
    return 0;
}
 
开发者ID:wso2,项目名称:wso2-commons-vfs,代码行数:17,代码来源:WebdavFileObject.java


示例16: doSetAttribute

import org.apache.jackrabbit.webdav.property.DavProperty; //导入依赖的package包/类
/**
 * Sets an attribute of this file.  Is only called if {@link #doGetType}
 * does not return {@link FileType#IMAGINARY}.
 * <p/>
 * This implementation throws an exception.
 */
@Override
protected void doSetAttribute(final String attrName, final Object value)
    throws Exception
{
    try
    {
        URLFileName fileName = (URLFileName) getName();
        String urlStr = urlString(fileName);
        DavPropertySet properties = new DavPropertySet();
        DavPropertyNameSet propertyNameSet = new DavPropertyNameSet();
        DavProperty property = new DefaultDavProperty(attrName, value, Namespace.EMPTY_NAMESPACE);
        if (value != null)
        {
            properties.add(property);
        }
        else
        {
            propertyNameSet.add(property.getName()); // remove property
        }

        PropPatchMethod method = new PropPatchMethod(urlStr, properties, propertyNameSet);
        setupMethod(method);
        execute(method);
        if (!method.succeeded())
        {
            throw new FileSystemException("Property '" + attrName + "' could not be set.");
        }
    }
    catch (FileSystemException fse)
    {
        throw fse;
    }
    catch (Exception e)
    {
        throw new FileSystemException("vfs.provider.webdav/propfind.error", getName(), e);
    }
}
 
开发者ID:wso2,项目名称:wso2-commons-vfs,代码行数:44,代码来源:WebdavFileObject.java


示例17: getProperty

import org.apache.jackrabbit.webdav.property.DavProperty; //导入依赖的package包/类
DavProperty getProperty(URLFileName fileName, DavPropertyName name)
        throws FileSystemException
{
    DavPropertyNameSet nameSet = new DavPropertyNameSet();
    nameSet.add(name);
    DavPropertySet propertySet = getProperties(fileName, nameSet, false);
    return propertySet.get(name);
}
 
开发者ID:wso2,项目名称:wso2-commons-vfs,代码行数:9,代码来源:WebdavFileObject.java


示例18: getProperties

import org.apache.jackrabbit.webdav.property.DavProperty; //导入依赖的package包/类
DavPropertySet getProperties(URLFileName name, int type, DavPropertyNameSet nameSet,
                             boolean addEncoding)
        throws FileSystemException
{
    try
    {
        String urlStr = urlString(name);
        PropFindMethod method = new PropFindMethod(urlStr, type, nameSet, DavConstants.DEPTH_0);
        setupMethod(method);
        execute(method);
        if (method.succeeded())
        {
            MultiStatus multiStatus = method.getResponseBodyAsMultiStatus();
            MultiStatusResponse response = multiStatus.getResponses()[0];
            DavPropertySet props = response.getProperties(HttpStatus.SC_OK);
            if (addEncoding)
            {
                DavProperty prop = new DefaultDavProperty(RESPONSE_CHARSET,
                        method.getResponseCharSet());
                props.add(prop);
            }
            return props;
        }
        return new DavPropertySet();
    }
    catch (FileSystemException fse)
    {
        throw fse;
    }
    catch (Exception e)
    {
        throw new FileSystemException("vfs.provider.webdav/propfind.error", getName(), e);
    }
}
 
开发者ID:wso2,项目名称:wso2-commons-vfs,代码行数:35,代码来源:WebdavFileObject.java


示例19: getProperties

import org.apache.jackrabbit.webdav.property.DavProperty; //导入依赖的package包/类
public DavPropertySet getProperties() {
	final Properties properties = getUnderlineResource().getProperties();
	DavPropertySet davproperties = new DavPropertySet();
	
	Iterator it = properties.keySet().iterator();
	while(it.hasNext()){
		final Object key = it.next();
		davproperties.add(new DavProperty() {
			public Element toXml(Document document) {
				return null;
			}
			public boolean isInvisibleInAllprop() {
				return false;
			}
			public Object getValue() {
				return properties.get(key);
			}
			public DavPropertyName getName() {
				return DavPropertyName.create((String)key);
			}
		});
	}
       for (DavProperty p : this.properties.values()) {
           davproperties.add(p);
       }
	return davproperties; 
}
 
开发者ID:wso2,项目名称:carbon-registry,代码行数:28,代码来源:RegistryResource.java


示例20: doGetContentSize

import org.apache.jackrabbit.webdav.property.DavProperty; //导入依赖的package包/类
/**
 * Returns the size of the file content (in bytes).
 */
protected long doGetContentSize() throws Exception
{
    DavProperty property = getProperty((URLFileName) getName(),
            DavConstants.PROPERTY_GETCONTENTLENGTH);
    if (property != null)
    {
        String value = (String) property.getValue();
        return Long.parseLong(value);
    }
    return 0;
}
 
开发者ID:pentaho,项目名称:pdi-vfs,代码行数:15,代码来源:WebdavFileObject.java



注:本文中的org.apache.jackrabbit.webdav.property.DavProperty类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java RequestEvent类代码示例发布时间:2022-05-22
下一篇:
Java JoinRelType类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap