
com.day.cq.contentsync.config.Config Maven / Gradle / Ivy
/*
* Copyright 1997-2010 Day Management AG
* Barfuesserplatz 6, 4001 Basel, Switzerland
* All Rights Reserved.
*
* This software is the confidential and proprietary information of
* Day Management AG, ("Confidential Information"). You shall not
* disclose such Confidential Information and shall use it only in
* accordance with the terms of the license agreement you entered into
* with Day.
*/
package com.day.cq.contentsync.config;
import java.util.Iterator;
/**
* The Config
interface provides access to
* content sync configurations.
*/
public interface Config {
/**
* Get the config's path.
*/
public String getPath();
/**
* Get the config's name.
*/
public String getName();
/**
* Get the authorizable's id that is authorized to read
* and write the cache.
*/
public String getAuthorizable();
/**
* Get the user's id to be used for content updates
* (in case it's not a personalized config).
*/
public String getUpdateUser();
/**
* Get the list of configuration entries.
*/
public Iterator getEntries();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy