All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.chemistry.opencmis.client.api.QueryResult Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
package org.apache.chemistry.opencmis.client.api;

import java.util.List;

import org.apache.chemistry.opencmis.commons.data.AllowableActions;
import org.apache.chemistry.opencmis.commons.data.PropertyData;

/**
 * Query result.
 */
public interface QueryResult {

    /**
     * Returns the list of all properties in this query result.
     * 
     * @return all properties, not {@code null}
     */
    List> getProperties();

    /**
     * Returns a property by ID.
     * 

* Because repositories are not obligated to add property IDs to their query * result properties, this method might not always work as expected with * some repositories. Use {@link #getPropertyByQueryName(String)} instead. * * @param id * the property ID * * @return the property or {@code null} if the property doesn't exist or * hasn't been requested */ PropertyData getPropertyById(String id); /** * Returns a property by query name or alias. * * @param queryName * the property query name or alias * * @return the property or {@code null} if the property doesn't exist or * hasn't been requested * */ PropertyData getPropertyByQueryName(String queryName); /** * Returns a property (single) value by ID. * * @param id * the property ID * * @see #getPropertyById(String) */ T getPropertyValueById(String id); /** * Returns a property (single) value by query name or alias. * * @param queryName * the property query name or alias * * @return the property value or {@code null} if the property doesn't exist, * hasn't been requested, or the property value isn't set * * @see #getPropertyByQueryName(String) */ T getPropertyValueByQueryName(String queryName); /** * Returns a property multi-value by ID. * * @param id * the property ID * * @return the property value or {@code null} if the property doesn't exist, * hasn't been requested, or the property value isn't set * * @see #getPropertyById(String) */ List getPropertyMultivalueById(String id); /** * Returns a property multi-value by query name or alias. * * @param queryName * the property query name or alias * * @return the property value or {@code null} if the property doesn't exist, * hasn't been requested, or the property value isn't set * * @see #getPropertyByQueryName(String) */ List getPropertyMultivalueByQueryName(String queryName); /** * Returns the allowable actions if they have been requested. * * @return the allowable actions if they have been requested, {@code null} * otherwise */ AllowableActions getAllowableActions(); /** * Returns the relationships if they have been requested. * * @returns the relationships if they have been requested, {@code null} * otherwise */ List getRelationships(); /** * Returns the renditions if they have been requested. * * @eturns the rendition if they have been requested, {@code null} otherwise */ List getRenditions(); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy