
org.glassfish.resources.mail.config.MailResource Maven / Gradle / Ivy
/*
* Copyright (c) 1997, 2020 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package org.glassfish.resources.mail.config;
import com.sun.enterprise.config.serverbeans.BindableResource;
import com.sun.enterprise.config.serverbeans.Resource;
import org.glassfish.admin.cli.resources.ResourceConfigCreator;
import org.glassfish.admin.cli.resources.UniqueResourceNameConstraint;
import org.glassfish.resourcebase.resources.ResourceDeploymentOrder;
import org.glassfish.resourcebase.resources.ResourceTypeOrder;
import org.jvnet.hk2.config.*;
import java.beans.PropertyVetoException;
import java.util.List;
import org.glassfish.api.admin.config.PropertiesDesc;
import org.jvnet.hk2.config.types.Property;
import org.jvnet.hk2.config.types.PropertyBag;
import org.glassfish.api.admin.RestRedirects;
import org.glassfish.api.admin.RestRedirect;
import org.glassfish.quality.ToDo;
import jakarta.validation.constraints.NotNull;
import com.sun.enterprise.config.serverbeans.customvalidators.JavaClassName;
/* @XmlType(name = "", propOrder = {
"description",
"property"
}) */
@Configured
@ResourceConfigCreator(commandName="create-mail-resource")
@RestRedirects({
@RestRedirect(opType = RestRedirect.OpType.POST, commandName = "create-mail-resource"),
@RestRedirect(opType = RestRedirect.OpType.DELETE, commandName = "delete-mail-resource")
})
@ResourceTypeOrder(deploymentOrder= ResourceDeploymentOrder.MAIL_RESOURCE)
@UniqueResourceNameConstraint(message="{resourcename.isnot.unique}", payload=MailResource.class)
/**
* The mail-resource element describes a jakarta.mail.Session resource
*/
public interface MailResource extends ConfigBeanProxy, Resource, PropertyBag, BindableResource {
/**
* Gets the value of the storeProtocol property.
*
* @return possible object is {@link String}
*/
@Attribute(defaultValue = "imap")
String getStoreProtocol();
/**
* Sets the value of the storeProtocol property.
*
* @param value allowed object is {@link String}
*/
void setStoreProtocol(String value) throws PropertyVetoException;
/**
* Gets the value of the storeProtocolClass property.
*
* @return possible object is {@link String}
*/
@Attribute(defaultValue = "com.sun.mail.imap.IMAPStore")
@JavaClassName
String getStoreProtocolClass();
/**
* Sets the value of the storeProtocolClass property.
*
* @param value allowed object is {@link String}
*/
void setStoreProtocolClass(String value) throws PropertyVetoException;
/**
* Gets the value of the transportProtocol property.
*
* @return possible object is {@link String}
*/
@Attribute(defaultValue = "smtp")
String getTransportProtocol();
/**
* Sets the value of the transportProtocol property.
*
* @param value allowed object is {@link String}
*/
void setTransportProtocol(String value) throws PropertyVetoException;
/**
* Gets the value of the transportProtocolClass property.
*
* @return possible object is {@link String}
*/
@Attribute(defaultValue = "com.sun.mail.smtp.SMTPTransport")
@JavaClassName
String getTransportProtocolClass();
/**
* Sets the value of the transportProtocolClass property.
*
* @param value allowed object is {@link String}
*/
void setTransportProtocolClass(String value) throws PropertyVetoException;
/**
* Gets the value of the host property.
* ip V6 or V4 address or hostname
*
* @return possible object is {@link String}
*/
@Attribute
@NotNull
String getHost();
/**
* Sets the value of the host property.
*
* @param value allowed object is {@link String}
*/
void setHost(String value) throws PropertyVetoException;
/**
* Gets the value of the user property.
*
* @return possible object is {@link String}
*/
@Attribute
@NotNull
String getUser();
/**
* Sets the value of the user property.
*
* @param value allowed object is {@link String}
*/
void setUser(String value) throws PropertyVetoException;
/**
* Gets the value of the from property.
*
* @return possible object is {@link String}
*/
@Attribute
@NotNull
String getFrom();
/**
* Sets the value of the from property.
*
* @param value allowed object is {@link String}
*/
void setFrom(String value) throws PropertyVetoException;
/**
* Gets the value of the debug property.
*
* @return possible object is {@link String}
*/
@Attribute(defaultValue = "false", dataType = Boolean.class)
String getDebug();
/**
* Sets the value of the debug property.
*
* @param value allowed object is {@link String}
*/
void setDebug(String value) throws PropertyVetoException;
/**
* Gets the value of the enabled property.
*
* @return possible object is {@link String}
*/
@Override
@Attribute(defaultValue = "true", dataType = Boolean.class)
String getEnabled();
/**
* Sets the value of the enabled property.
*
* @param value allowed object is {@link String}
*/
@Override
void setEnabled(String value) throws PropertyVetoException;
/**
* Gets the value of the description property.
*
* @return possible object is {@link String}
*/
@Attribute
String getDescription();
/**
* Sets the value of the description property.
*
* @param value allowed object is {@link String}
*/
void setDescription(String value) throws PropertyVetoException;
/**
* Properties as per {@link PropertyBag}
*/
@Override
@ToDo(priority = ToDo.Priority.IMPORTANT, details = "Provide PropertyDesc for legal props")
@PropertiesDesc(props = {})
@Element
List getProperty();
@Override
@DuckTyped
String getIdentity();
class Duck {
public static String getIdentity(MailResource resource){
return resource.getJndiName();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy