Package io.vertx.up.runtime.soul
Class UriMeta
- java.lang.Object
-
- io.vertx.up.runtime.soul.UriMeta
-
- All Implemented Interfaces:
Serializable
public class UriMeta extends Object implements Serializable
This object is for uri store, it could store following information 1. Api ( uri + method / uri + method + key ), both static and dynamic 2. Address ( deployment address ) 3. Worker ( Critical component that bridged vert.x and zero )- Author:
- Lang
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UriMeta()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)StringgetAddress()StringgetCacheKey()StringgetComment()StringgetKey()io.vertx.core.http.HttpMethodgetMethod()StringgetName()StringgetUri()Class<?>getWorkerClass()MethodgetWorkerMethod()inthashCode()booleanisDynamic()voidsetAddress(String address)voidsetComment(String comment)voidsetDynamic(boolean dynamic)voidsetKey(String key)voidsetMethod(io.vertx.core.http.HttpMethod method)voidsetName(String name)voidsetUri(String uri)voidsetWorkerClass(Class<?> workerClass)voidsetWorkerMethod(Method workerMethod)
-
-
-
Method Detail
-
isDynamic
public boolean isDynamic()
-
setDynamic
public void setDynamic(boolean dynamic)
-
getUri
public String getUri()
-
setUri
public void setUri(String uri)
-
getCacheKey
public String getCacheKey()
-
getMethod
public io.vertx.core.http.HttpMethod getMethod()
-
setMethod
public void setMethod(io.vertx.core.http.HttpMethod method)
-
getKey
public String getKey()
-
setKey
public void setKey(String key)
-
getAddress
public String getAddress()
-
setAddress
public void setAddress(String address)
-
getWorkerClass
public Class<?> getWorkerClass()
-
setWorkerClass
public void setWorkerClass(Class<?> workerClass)
-
getWorkerMethod
public Method getWorkerMethod()
-
setWorkerMethod
public void setWorkerMethod(Method workerMethod)
-
getComment
public String getComment()
-
setComment
public void setComment(String comment)
-
getName
public String getName()
-
setName
public void setName(String name)
-
-