blob: 98d1ea436be95efabbef0392f1f98b48ec72ed80 [file] [log] [blame]
/*
* 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.sling.distribution.communication;
/**
* The type of a specific distribution action, used to decide what to do with specific distribution
* items / requests.
*/
public enum DistributionActionType {
/**
* Content is added
*/
ADD("Add"),
/**
* Content is deleted
*/
DELETE("Delete"),
/**
* Content is polled
*/
POLL("Poll");
/**
* internal human readable name
*/
private final String name;
/**
* Create a type
*
* @param name name
*/
private DistributionActionType(String name) {
this.name = name;
}
/**
* Returns the human readable type name of this type.
*
* @return the name
*/
public String getName() {
return name;
}
/**
* Creates an action type for the given name. if the name cannot be mapped to a enum type or if
* it's <code>null</code>, <code>null</code> is returned.
*
* @param n the name
* @return the type or <code>null</code>
*/
public static DistributionActionType fromName(String n) {
if (n == null) {
return null;
}
try {
return DistributionActionType.valueOf(n.toUpperCase());
} catch (IllegalArgumentException e) {
return null;
}
}
}