/* ******************************************************************** Licensed to Jasig under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. Jasig 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.bedework.calfacade.configs; import org.bedework.util.jmx.MBeanInfo; import java.io.Serializable; /** This interface defines the various common directory interface properties. * * @author Mike Douglass */ public interface DirConfigProperties extends Serializable { /** Mbean class name * * @param val String */ void setMbeanClassName(final String val); /** Class name * * @return String */ @MBeanInfo("The mbean class.") String getMbeanClassName(); /** * @param val */ public void setDomains(final String val); /** Comma separated list of domains - '*' should be treated as a wildcard * * @return String val */ @MBeanInfo("Comma separated list of domains - '*' should be treated as a wildcard.") public String getDomains(); /** * @param val */ public void setDefaultDomain(final String val); /** * * @return String val */ @MBeanInfo("defaultDomain can be left unspecified for no default or a single" + " exactly specified domain.") public String getDefaultDomain(); }