bmv.org.pushca.core.PImpression Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pushca-client Show documentation
Show all versions of pushca-client Show documentation
Advanced client for Pushca server, without connection pool support
The newest version!
package bmv.org.pushca.core;
public class PImpression {
public String resourceId;
public ResourceType resourceType;
public int code;
public PImpression() {
}
public PImpression(String resourceId, ResourceType resourceType, int code) {
this.resourceId = resourceId;
this.resourceType = resourceType;
this.code = code;
}
}