com.adobe.internal.mac.resource.BasicResourceHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
package com.adobe.internal.mac.resource;
import com.adobe.internal.mac.resource.ResourceParser.ResourceHandler;
abstract public class BasicResourceHandler implements ResourceHandler
{
private byte[] resourceType;
public BasicResourceHandler(byte[] handlerType)
{
this.resourceType = handlerType;
}
public byte[] getResourceType()
{
return this.resourceType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy