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

org.flowable.app.api.repository.AppDefinition Maven / Gradle / Ivy

There is a newer version: 7.1.0
Show newest version
/* Licensed 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.flowable.app.api.repository;

import org.flowable.app.api.AppRepositoryService;

public interface AppDefinition {

    /** unique identifier */
    String getId();

    /**
     * category name which is derived from the targetNamespace attribute in the definitions element
     */
    String getCategory();

    /** label used for display purposes */
    String getName();

    /** unique name for all versions of this app definition */
    String getKey();

    /** description of this app definition **/
    String getDescription();

    /** version of this app definition */
    int getVersion();

    /**
     * name of {@link AppRepositoryService#getResourceAsStream(String, String) the resource} of this app definition.
     */
    String getResourceName();

    /** The deployment in which this app definition is contained. */
    String getDeploymentId();

    /** The tenant identifier of this app definition */
    String getTenantId();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy