OffloadingLocations.java
388 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.granite.offloading.impl;
public enum OffloadingLocations {
MASTER("master"),
WORKER("worker");
String propertyValue = null;
private OffloadingLocations(String propertyValue) {
this.propertyValue = propertyValue;
}
public String getPropertyValue() {
return this.propertyValue;
}
}