com.foilen.infra.api.request.RequestResourceSearch Maven / Gradle / Ivy
/*
Foilen Infra API
https://github.com/foilen/foilen-infra-api
Copyright (c) 2017-2021 Foilen (https://foilen.com)
The MIT License
http://opensource.org/licenses/MIT
*/
package com.foilen.infra.api.request;
import java.util.HashMap;
import java.util.Map;
import com.foilen.smalltools.restapi.model.AbstractApiBase;
public class RequestResourceSearch extends AbstractApiBase {
private String resourceType;
private Map properties = new HashMap<>();
private String tag;
public Map getProperties() {
return properties;
}
public String getResourceType() {
return resourceType;
}
public String getTag() {
return tag;
}
public RequestResourceSearch setProperties(Map properties) {
this.properties = properties;
return this;
}
public RequestResourceSearch setResourceType(String resourceType) {
this.resourceType = resourceType;
return this;
}
public RequestResourceSearch setTag(String tag) {
this.tag = tag;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy