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

jfxtras.icalendarfx.parameters.Delegators Maven / Gradle / Ivy

The newest version!
package jfxtras.icalendarfx.parameters;

import java.net.URI;
import java.util.List;

import jfxtras.icalendarfx.parameters.Delegators;
import jfxtras.icalendarfx.parameters.VParameterBase;
import jfxtras.icalendarfx.utilities.StringConverter;
import jfxtras.icalendarfx.utilities.StringConverters;

/**
 * DELEGATED-FROM
 * Delegators
 * RFC 5545, 3.2.4, page 17
 * 
 * To specify the calendar users that have delegated their
 *    participation to the calendar user specified by the property.
 * 
 * Example:
 * ATTENDEE;DELEGATED-FROM="mailto:[email protected]":mailto:
 *  [email protected]
 * 
 * @author David Bal
 */
public class Delegators extends VParameterBase>
{
	private static final StringConverter< List> CONVERTER = StringConverters.uriListConverter();

    public Delegators(List list)
    {
        super(list, CONVERTER);
    }
    
    public Delegators()
    {
        super(CONVERTER);
    }
    
    public Delegators(Delegators source)
    {
        super(source, CONVERTER);
    }
    
    public static Delegators parse(String content)
    {
    	return Delegators.parse(new Delegators(), content);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy