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

com.clickntap.stripecubeui.api.BinaryResource Maven / Gradle / Ivy

Go to download

Css / Javascript Merger and Minimizer integrated with Stripecube Web App Development

The newest version!
package com.clickntap.stripecubeui.api;

import java.io.Serializable;

public class BinaryResource implements Serializable {
	private String path;
	private byte[] bytes;

	public String getPath() {
		return path;
	}

	public void setPath(String path) {
		this.path = path;
	}

	public byte[] getBytes() {
		return bytes;
	}

	public void setBytes(byte[] bytes) {
		this.bytes = bytes;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy