org.apache.jackrabbit.vault.fs.config.MetaInf Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
/*
* 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.jackrabbit.vault.fs.config;
import java.util.Collection;
import java.util.Properties;
import org.apache.jackrabbit.vault.fs.api.VaultFsConfig;
import org.apache.jackrabbit.vault.fs.api.WorkspaceFilter;
import org.apache.jackrabbit.vault.fs.spi.NodeTypeSet;
import org.apache.jackrabbit.vault.fs.spi.PrivilegeDefinitions;
import org.apache.jackrabbit.vault.packaging.PackageProperties;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import org.osgi.annotation.versioning.ProviderType;
/**
* Abstracts the way of accessing the vault specific meta-info of a checkout.
* TODO: merge with packageInfo
*/
@ProviderType
public interface MetaInf {
/**
* Format Version 1. Used for content assembled until Vault 1.2.8
* @since 2.0
*/
int FORMAT_VERSION_1 = 1;
/**
* Format Version 2. Used for content assembled since Vault 1.2.9
* @since 2.0
*/
int FORMAT_VERSION_2 = 2;
/**
* Name of the package format version
* @since 2.0
*/
String PACKAGE_FORMAT_VERSION = "packageFormatVersion";
/**
* Name of the 'created' property
*/
String CREATED = "created";
/**
* Name of the 'created by' property
*/
String CREATED_BY = "createdBy";
/**
* Name of the 'generator' property
*/
String GENERATOR = "generator";
/**
* Returns the package format version of this package. If the package
* lacks this information, {@link #FORMAT_VERSION_2} is returned, since this
* feature was implemented recently.
*
* @return the package format version
* @since 2.0
*/
int getPackageFormatVersion();
/**
* Returns the vault settings.
* @return the vault settings
*/
@Nullable
VaultSettings getSettings();
/**
* Returns the workspace filter.
* @return the workspace filter
*/
@Nullable
WorkspaceFilter getFilter();
/**
* Returns the vault config.
* @return the vault config
*/
@Nullable
VaultFsConfig getConfig();
/**
* Returns the properties.
* @return the properties
*/
@Nullable
Properties getProperties();
/**
* Returns the package properties.
* @return the package properties
*/
@NotNull
PackageProperties getPackageProperties();
/**
* Returns the node types.
* @return the node types
*/
@NotNull
Collection getNodeTypes();
/**
* Returns custom privileges defined in the meta inf.
* @return a collection of custom privileges
* @since 3.0
*/
@Nullable
PrivilegeDefinitions getPrivileges();
/**
* Checks if the meta-inf contains a serialized definition.
* @return {@code true} if it contains a serialized definition
*/
boolean hasDefinition();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy