OptionValueImpl.java
698 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.day.cq.mcm.campaign.profile.impl;
import com.day.cq.mcm.campaign.profile.OptionValue;
@Deprecated
public class OptionValueImpl
implements OptionValue {
private final String value;
private final String name;
private final String label;
protected OptionValueImpl(String value, String name, String label) {
this.value = value;
this.name = name;
this.label = label;
}
@Override
public String getValue() {
return this.value;
}
@Override
public String getName() {
return this.name;
}
@Override
public String getLabel() {
return this.label;
}
}