http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/devapidocs/src-html/org/apache/hadoop/hbase/rest/provider/consumer/ProtobufMessageBodyConsumer.html ---------------------------------------------------------------------- diff --git a/devapidocs/src-html/org/apache/hadoop/hbase/rest/provider/consumer/ProtobufMessageBodyConsumer.html b/devapidocs/src-html/org/apache/hadoop/hbase/rest/provider/consumer/ProtobufMessageBodyConsumer.html index 041b052..8ddc11a 100644 --- a/devapidocs/src-html/org/apache/hadoop/hbase/rest/provider/consumer/ProtobufMessageBodyConsumer.html +++ b/devapidocs/src-html/org/apache/hadoop/hbase/rest/provider/consumer/ProtobufMessageBodyConsumer.html @@ -31,64 +31,64 @@ <span class="sourceLineNo">023</span>import java.io.IOException;<a name="line.23"></a> <span class="sourceLineNo">024</span>import java.io.InputStream;<a name="line.24"></a> <span class="sourceLineNo">025</span>import java.lang.annotation.Annotation;<a name="line.25"></a> -<span class="sourceLineNo">026</span>import java.lang.reflect.Type;<a name="line.26"></a> -<span class="sourceLineNo">027</span><a name="line.27"></a> -<span class="sourceLineNo">028</span>import javax.ws.rs.Consumes;<a name="line.28"></a> -<span class="sourceLineNo">029</span>import javax.ws.rs.WebApplicationException;<a name="line.29"></a> -<span class="sourceLineNo">030</span>import javax.ws.rs.core.MediaType;<a name="line.30"></a> -<span class="sourceLineNo">031</span>import javax.ws.rs.core.MultivaluedMap;<a name="line.31"></a> -<span class="sourceLineNo">032</span>import javax.ws.rs.ext.MessageBodyReader;<a name="line.32"></a> -<span class="sourceLineNo">033</span>import javax.ws.rs.ext.Provider;<a name="line.33"></a> -<span class="sourceLineNo">034</span><a name="line.34"></a> -<span class="sourceLineNo">035</span>import org.apache.yetus.audience.InterfaceAudience;<a name="line.35"></a> -<span class="sourceLineNo">036</span>import org.slf4j.Logger;<a name="line.36"></a> -<span class="sourceLineNo">037</span>import org.slf4j.LoggerFactory;<a name="line.37"></a> -<span class="sourceLineNo">038</span>import org.apache.hadoop.hbase.rest.Constants;<a name="line.38"></a> -<span class="sourceLineNo">039</span>import org.apache.hadoop.hbase.rest.ProtobufMessageHandler;<a name="line.39"></a> -<span class="sourceLineNo">040</span><a name="line.40"></a> -<span class="sourceLineNo">041</span>/**<a name="line.41"></a> -<span class="sourceLineNo">042</span> * Adapter for hooking up Jersey content processing dispatch to<a name="line.42"></a> -<span class="sourceLineNo">043</span> * ProtobufMessageHandler interface capable handlers for decoding protobuf input.<a name="line.43"></a> -<span class="sourceLineNo">044</span> */<a name="line.44"></a> -<span class="sourceLineNo">045</span>@Provider<a name="line.45"></a> -<span class="sourceLineNo">046</span>@Consumes({Constants.MIMETYPE_PROTOBUF, Constants.MIMETYPE_PROTOBUF_IETF})<a name="line.46"></a> -<span class="sourceLineNo">047</span>@InterfaceAudience.Private<a name="line.47"></a> -<span class="sourceLineNo">048</span>public class ProtobufMessageBodyConsumer<a name="line.48"></a> -<span class="sourceLineNo">049</span> implements MessageBodyReader<ProtobufMessageHandler> {<a name="line.49"></a> -<span class="sourceLineNo">050</span> private static final Logger LOG =<a name="line.50"></a> -<span class="sourceLineNo">051</span> LoggerFactory.getLogger(ProtobufMessageBodyConsumer.class);<a name="line.51"></a> -<span class="sourceLineNo">052</span><a name="line.52"></a> -<span class="sourceLineNo">053</span> @Override<a name="line.53"></a> -<span class="sourceLineNo">054</span> public boolean isReadable(Class<?> type, Type genericType,<a name="line.54"></a> -<span class="sourceLineNo">055</span> Annotation[] annotations, MediaType mediaType) {<a name="line.55"></a> -<span class="sourceLineNo">056</span> return ProtobufMessageHandler.class.isAssignableFrom(type);<a name="line.56"></a> -<span class="sourceLineNo">057</span> }<a name="line.57"></a> -<span class="sourceLineNo">058</span><a name="line.58"></a> -<span class="sourceLineNo">059</span> @Override<a name="line.59"></a> -<span class="sourceLineNo">060</span> public ProtobufMessageHandler readFrom(Class<ProtobufMessageHandler> type, Type genericType,<a name="line.60"></a> -<span class="sourceLineNo">061</span> Annotation[] annotations, MediaType mediaType,<a name="line.61"></a> -<span class="sourceLineNo">062</span> MultivaluedMap<String, String> httpHeaders, InputStream inputStream)<a name="line.62"></a> -<span class="sourceLineNo">063</span> throws IOException, WebApplicationException {<a name="line.63"></a> -<span class="sourceLineNo">064</span> ProtobufMessageHandler obj = null;<a name="line.64"></a> -<span class="sourceLineNo">065</span> try {<a name="line.65"></a> -<span class="sourceLineNo">066</span> obj = type.newInstance();<a name="line.66"></a> -<span class="sourceLineNo">067</span> ByteArrayOutputStream baos = new ByteArrayOutputStream();<a name="line.67"></a> -<span class="sourceLineNo">068</span> byte[] buffer = new byte[4096];<a name="line.68"></a> -<span class="sourceLineNo">069</span> int read;<a name="line.69"></a> -<span class="sourceLineNo">070</span> do {<a name="line.70"></a> -<span class="sourceLineNo">071</span> read = inputStream.read(buffer, 0, buffer.length);<a name="line.71"></a> -<span class="sourceLineNo">072</span> if (read > 0) {<a name="line.72"></a> -<span class="sourceLineNo">073</span> baos.write(buffer, 0, read);<a name="line.73"></a> -<span class="sourceLineNo">074</span> }<a name="line.74"></a> -<span class="sourceLineNo">075</span> } while (read > 0);<a name="line.75"></a> -<span class="sourceLineNo">076</span> if (LOG.isTraceEnabled()) {<a name="line.76"></a> -<span class="sourceLineNo">077</span> LOG.trace(getClass() + ": read " + baos.size() + " bytes from " +<a name="line.77"></a> -<span class="sourceLineNo">078</span> inputStream);<a name="line.78"></a> -<span class="sourceLineNo">079</span> }<a name="line.79"></a> -<span class="sourceLineNo">080</span> obj = obj.getObjectFromMessage(baos.toByteArray());<a name="line.80"></a> -<span class="sourceLineNo">081</span> } catch (InstantiationException e) {<a name="line.81"></a> -<span class="sourceLineNo">082</span> throw new WebApplicationException(e);<a name="line.82"></a> -<span class="sourceLineNo">083</span> } catch (IllegalAccessException e) {<a name="line.83"></a> +<span class="sourceLineNo">026</span>import java.lang.reflect.InvocationTargetException;<a name="line.26"></a> +<span class="sourceLineNo">027</span>import java.lang.reflect.Type;<a name="line.27"></a> +<span class="sourceLineNo">028</span><a name="line.28"></a> +<span class="sourceLineNo">029</span>import javax.ws.rs.Consumes;<a name="line.29"></a> +<span class="sourceLineNo">030</span>import javax.ws.rs.WebApplicationException;<a name="line.30"></a> +<span class="sourceLineNo">031</span>import javax.ws.rs.core.MediaType;<a name="line.31"></a> +<span class="sourceLineNo">032</span>import javax.ws.rs.core.MultivaluedMap;<a name="line.32"></a> +<span class="sourceLineNo">033</span>import javax.ws.rs.ext.MessageBodyReader;<a name="line.33"></a> +<span class="sourceLineNo">034</span>import javax.ws.rs.ext.Provider;<a name="line.34"></a> +<span class="sourceLineNo">035</span><a name="line.35"></a> +<span class="sourceLineNo">036</span>import org.apache.yetus.audience.InterfaceAudience;<a name="line.36"></a> +<span class="sourceLineNo">037</span>import org.slf4j.Logger;<a name="line.37"></a> +<span class="sourceLineNo">038</span>import org.slf4j.LoggerFactory;<a name="line.38"></a> +<span class="sourceLineNo">039</span>import org.apache.hadoop.hbase.rest.Constants;<a name="line.39"></a> +<span class="sourceLineNo">040</span>import org.apache.hadoop.hbase.rest.ProtobufMessageHandler;<a name="line.40"></a> +<span class="sourceLineNo">041</span><a name="line.41"></a> +<span class="sourceLineNo">042</span>/**<a name="line.42"></a> +<span class="sourceLineNo">043</span> * Adapter for hooking up Jersey content processing dispatch to<a name="line.43"></a> +<span class="sourceLineNo">044</span> * ProtobufMessageHandler interface capable handlers for decoding protobuf input.<a name="line.44"></a> +<span class="sourceLineNo">045</span> */<a name="line.45"></a> +<span class="sourceLineNo">046</span>@Provider<a name="line.46"></a> +<span class="sourceLineNo">047</span>@Consumes({Constants.MIMETYPE_PROTOBUF, Constants.MIMETYPE_PROTOBUF_IETF})<a name="line.47"></a> +<span class="sourceLineNo">048</span>@InterfaceAudience.Private<a name="line.48"></a> +<span class="sourceLineNo">049</span>public class ProtobufMessageBodyConsumer<a name="line.49"></a> +<span class="sourceLineNo">050</span> implements MessageBodyReader<ProtobufMessageHandler> {<a name="line.50"></a> +<span class="sourceLineNo">051</span> private static final Logger LOG =<a name="line.51"></a> +<span class="sourceLineNo">052</span> LoggerFactory.getLogger(ProtobufMessageBodyConsumer.class);<a name="line.52"></a> +<span class="sourceLineNo">053</span><a name="line.53"></a> +<span class="sourceLineNo">054</span> @Override<a name="line.54"></a> +<span class="sourceLineNo">055</span> public boolean isReadable(Class<?> type, Type genericType,<a name="line.55"></a> +<span class="sourceLineNo">056</span> Annotation[] annotations, MediaType mediaType) {<a name="line.56"></a> +<span class="sourceLineNo">057</span> return ProtobufMessageHandler.class.isAssignableFrom(type);<a name="line.57"></a> +<span class="sourceLineNo">058</span> }<a name="line.58"></a> +<span class="sourceLineNo">059</span><a name="line.59"></a> +<span class="sourceLineNo">060</span> @Override<a name="line.60"></a> +<span class="sourceLineNo">061</span> public ProtobufMessageHandler readFrom(Class<ProtobufMessageHandler> type, Type genericType,<a name="line.61"></a> +<span class="sourceLineNo">062</span> Annotation[] annotations, MediaType mediaType,<a name="line.62"></a> +<span class="sourceLineNo">063</span> MultivaluedMap<String, String> httpHeaders, InputStream inputStream)<a name="line.63"></a> +<span class="sourceLineNo">064</span> throws IOException, WebApplicationException {<a name="line.64"></a> +<span class="sourceLineNo">065</span> ProtobufMessageHandler obj = null;<a name="line.65"></a> +<span class="sourceLineNo">066</span> try {<a name="line.66"></a> +<span class="sourceLineNo">067</span> obj = type.getDeclaredConstructor().newInstance();<a name="line.67"></a> +<span class="sourceLineNo">068</span> ByteArrayOutputStream baos = new ByteArrayOutputStream();<a name="line.68"></a> +<span class="sourceLineNo">069</span> byte[] buffer = new byte[4096];<a name="line.69"></a> +<span class="sourceLineNo">070</span> int read;<a name="line.70"></a> +<span class="sourceLineNo">071</span> do {<a name="line.71"></a> +<span class="sourceLineNo">072</span> read = inputStream.read(buffer, 0, buffer.length);<a name="line.72"></a> +<span class="sourceLineNo">073</span> if (read > 0) {<a name="line.73"></a> +<span class="sourceLineNo">074</span> baos.write(buffer, 0, read);<a name="line.74"></a> +<span class="sourceLineNo">075</span> }<a name="line.75"></a> +<span class="sourceLineNo">076</span> } while (read > 0);<a name="line.76"></a> +<span class="sourceLineNo">077</span> if (LOG.isTraceEnabled()) {<a name="line.77"></a> +<span class="sourceLineNo">078</span> LOG.trace(getClass() + ": read " + baos.size() + " bytes from " +<a name="line.78"></a> +<span class="sourceLineNo">079</span> inputStream);<a name="line.79"></a> +<span class="sourceLineNo">080</span> }<a name="line.80"></a> +<span class="sourceLineNo">081</span> obj = obj.getObjectFromMessage(baos.toByteArray());<a name="line.81"></a> +<span class="sourceLineNo">082</span> } catch (InstantiationException | NoSuchMethodException | InvocationTargetException<a name="line.82"></a> +<span class="sourceLineNo">083</span> | IllegalAccessException e) {<a name="line.83"></a> <span class="sourceLineNo">084</span> throw new WebApplicationException(e);<a name="line.84"></a> <span class="sourceLineNo">085</span> }<a name="line.85"></a> <span class="sourceLineNo">086</span> return obj;<a name="line.86"></a>
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/devapidocs/src-html/org/apache/hadoop/hbase/rest/provider/producer/PlainTextMessageBodyProducer.html ---------------------------------------------------------------------- diff --git a/devapidocs/src-html/org/apache/hadoop/hbase/rest/provider/producer/PlainTextMessageBodyProducer.html b/devapidocs/src-html/org/apache/hadoop/hbase/rest/provider/producer/PlainTextMessageBodyProducer.html index f13272a..33a8234 100644 --- a/devapidocs/src-html/org/apache/hadoop/hbase/rest/provider/producer/PlainTextMessageBodyProducer.html +++ b/devapidocs/src-html/org/apache/hadoop/hbase/rest/provider/producer/PlainTextMessageBodyProducer.html @@ -39,42 +39,43 @@ <span class="sourceLineNo">031</span>import javax.ws.rs.ext.MessageBodyWriter;<a name="line.31"></a> <span class="sourceLineNo">032</span>import javax.ws.rs.ext.Provider;<a name="line.32"></a> <span class="sourceLineNo">033</span><a name="line.33"></a> -<span class="sourceLineNo">034</span>import org.apache.yetus.audience.InterfaceAudience;<a name="line.34"></a> +<span class="sourceLineNo">034</span>import org.apache.hadoop.hbase.util.Bytes;<a name="line.34"></a> <span class="sourceLineNo">035</span>import org.apache.hadoop.hbase.rest.Constants;<a name="line.35"></a> -<span class="sourceLineNo">036</span><a name="line.36"></a> -<span class="sourceLineNo">037</span>/**<a name="line.37"></a> -<span class="sourceLineNo">038</span> * An adapter between Jersey and Object.toString(). Hooks up plain text output<a name="line.38"></a> -<span class="sourceLineNo">039</span> * to the Jersey content handling framework. <a name="line.39"></a> -<span class="sourceLineNo">040</span> * Jersey will first call getSize() to learn the number of bytes that will be<a name="line.40"></a> -<span class="sourceLineNo">041</span> * sent, then writeTo to perform the actual I/O.<a name="line.41"></a> -<span class="sourceLineNo">042</span> */<a name="line.42"></a> -<span class="sourceLineNo">043</span>@Provider<a name="line.43"></a> -<span class="sourceLineNo">044</span>@Produces(Constants.MIMETYPE_TEXT)<a name="line.44"></a> -<span class="sourceLineNo">045</span>@InterfaceAudience.Private<a name="line.45"></a> -<span class="sourceLineNo">046</span>public class PlainTextMessageBodyProducer <a name="line.46"></a> -<span class="sourceLineNo">047</span> implements MessageBodyWriter<Object> {<a name="line.47"></a> -<span class="sourceLineNo">048</span><a name="line.48"></a> -<span class="sourceLineNo">049</span> @Override<a name="line.49"></a> -<span class="sourceLineNo">050</span> public boolean isWriteable(Class<?> arg0, Type arg1, Annotation[] arg2,<a name="line.50"></a> -<span class="sourceLineNo">051</span> MediaType arg3) {<a name="line.51"></a> -<span class="sourceLineNo">052</span> return true;<a name="line.52"></a> -<span class="sourceLineNo">053</span> }<a name="line.53"></a> -<span class="sourceLineNo">054</span><a name="line.54"></a> -<span class="sourceLineNo">055</span> @Override<a name="line.55"></a> -<span class="sourceLineNo">056</span> public long getSize(Object object, Class<?> type, Type genericType,<a name="line.56"></a> -<span class="sourceLineNo">057</span> Annotation[] annotations, MediaType mediaType) {<a name="line.57"></a> -<span class="sourceLineNo">058</span> // deprecated by JAX-RS 2.0 and ignored by Jersey runtime<a name="line.58"></a> -<span class="sourceLineNo">059</span> return -1;<a name="line.59"></a> -<span class="sourceLineNo">060</span> }<a name="line.60"></a> -<span class="sourceLineNo">061</span><a name="line.61"></a> -<span class="sourceLineNo">062</span> @Override<a name="line.62"></a> -<span class="sourceLineNo">063</span> public void writeTo(Object object, Class<?> type, Type genericType,<a name="line.63"></a> -<span class="sourceLineNo">064</span> Annotation[] annotations, MediaType mediaType,<a name="line.64"></a> -<span class="sourceLineNo">065</span> MultivaluedMap<String, Object> httpHeaders, OutputStream outStream)<a name="line.65"></a> -<span class="sourceLineNo">066</span> throws IOException, WebApplicationException {<a name="line.66"></a> -<span class="sourceLineNo">067</span> outStream.write(object.toString().getBytes());<a name="line.67"></a> -<span class="sourceLineNo">068</span> }<a name="line.68"></a> -<span class="sourceLineNo">069</span>}<a name="line.69"></a> +<span class="sourceLineNo">036</span>import org.apache.yetus.audience.InterfaceAudience;<a name="line.36"></a> +<span class="sourceLineNo">037</span><a name="line.37"></a> +<span class="sourceLineNo">038</span>/**<a name="line.38"></a> +<span class="sourceLineNo">039</span> * An adapter between Jersey and Object.toString(). Hooks up plain text output<a name="line.39"></a> +<span class="sourceLineNo">040</span> * to the Jersey content handling framework. <a name="line.40"></a> +<span class="sourceLineNo">041</span> * Jersey will first call getSize() to learn the number of bytes that will be<a name="line.41"></a> +<span class="sourceLineNo">042</span> * sent, then writeTo to perform the actual I/O.<a name="line.42"></a> +<span class="sourceLineNo">043</span> */<a name="line.43"></a> +<span class="sourceLineNo">044</span>@Provider<a name="line.44"></a> +<span class="sourceLineNo">045</span>@Produces(Constants.MIMETYPE_TEXT)<a name="line.45"></a> +<span class="sourceLineNo">046</span>@InterfaceAudience.Private<a name="line.46"></a> +<span class="sourceLineNo">047</span>public class PlainTextMessageBodyProducer <a name="line.47"></a> +<span class="sourceLineNo">048</span> implements MessageBodyWriter<Object> {<a name="line.48"></a> +<span class="sourceLineNo">049</span><a name="line.49"></a> +<span class="sourceLineNo">050</span> @Override<a name="line.50"></a> +<span class="sourceLineNo">051</span> public boolean isWriteable(Class<?> arg0, Type arg1, Annotation[] arg2,<a name="line.51"></a> +<span class="sourceLineNo">052</span> MediaType arg3) {<a name="line.52"></a> +<span class="sourceLineNo">053</span> return true;<a name="line.53"></a> +<span class="sourceLineNo">054</span> }<a name="line.54"></a> +<span class="sourceLineNo">055</span><a name="line.55"></a> +<span class="sourceLineNo">056</span> @Override<a name="line.56"></a> +<span class="sourceLineNo">057</span> public long getSize(Object object, Class<?> type, Type genericType,<a name="line.57"></a> +<span class="sourceLineNo">058</span> Annotation[] annotations, MediaType mediaType) {<a name="line.58"></a> +<span class="sourceLineNo">059</span> // deprecated by JAX-RS 2.0 and ignored by Jersey runtime<a name="line.59"></a> +<span class="sourceLineNo">060</span> return -1;<a name="line.60"></a> +<span class="sourceLineNo">061</span> }<a name="line.61"></a> +<span class="sourceLineNo">062</span><a name="line.62"></a> +<span class="sourceLineNo">063</span> @Override<a name="line.63"></a> +<span class="sourceLineNo">064</span> public void writeTo(Object object, Class<?> type, Type genericType,<a name="line.64"></a> +<span class="sourceLineNo">065</span> Annotation[] annotations, MediaType mediaType,<a name="line.65"></a> +<span class="sourceLineNo">066</span> MultivaluedMap<String, Object> httpHeaders, OutputStream outStream)<a name="line.66"></a> +<span class="sourceLineNo">067</span> throws IOException, WebApplicationException {<a name="line.67"></a> +<span class="sourceLineNo">068</span> outStream.write(Bytes.toBytes(object.toString()));<a name="line.68"></a> +<span class="sourceLineNo">069</span> }<a name="line.69"></a> +<span class="sourceLineNo">070</span>}<a name="line.70"></a> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/devapidocs/src-html/org/apache/hadoop/hbase/rest/provider/producer/ProtobufMessageBodyProducer.html ---------------------------------------------------------------------- diff --git a/devapidocs/src-html/org/apache/hadoop/hbase/rest/provider/producer/ProtobufMessageBodyProducer.html b/devapidocs/src-html/org/apache/hadoop/hbase/rest/provider/producer/ProtobufMessageBodyProducer.html index 41788bb..a666611 100644 --- a/devapidocs/src-html/org/apache/hadoop/hbase/rest/provider/producer/ProtobufMessageBodyProducer.html +++ b/devapidocs/src-html/org/apache/hadoop/hbase/rest/provider/producer/ProtobufMessageBodyProducer.html @@ -27,48 +27,48 @@ <span class="sourceLineNo">019</span><a name="line.19"></a> <span class="sourceLineNo">020</span>package org.apache.hadoop.hbase.rest.provider.producer;<a name="line.20"></a> <span class="sourceLineNo">021</span><a name="line.21"></a> -<span class="sourceLineNo">022</span>import java.io.ByteArrayOutputStream;<a name="line.22"></a> -<span class="sourceLineNo">023</span>import java.io.IOException;<a name="line.23"></a> -<span class="sourceLineNo">024</span>import java.io.OutputStream;<a name="line.24"></a> -<span class="sourceLineNo">025</span>import java.lang.annotation.Annotation;<a name="line.25"></a> -<span class="sourceLineNo">026</span>import java.lang.reflect.Type;<a name="line.26"></a> -<span class="sourceLineNo">027</span><a name="line.27"></a> -<span class="sourceLineNo">028</span>import javax.ws.rs.Produces;<a name="line.28"></a> -<span class="sourceLineNo">029</span>import javax.ws.rs.WebApplicationException;<a name="line.29"></a> -<span class="sourceLineNo">030</span>import javax.ws.rs.core.MediaType;<a name="line.30"></a> -<span class="sourceLineNo">031</span>import javax.ws.rs.core.MultivaluedMap;<a name="line.31"></a> -<span class="sourceLineNo">032</span>import javax.ws.rs.ext.MessageBodyWriter;<a name="line.32"></a> -<span class="sourceLineNo">033</span>import javax.ws.rs.ext.Provider;<a name="line.33"></a> -<span class="sourceLineNo">034</span><a name="line.34"></a> -<span class="sourceLineNo">035</span>import org.apache.yetus.audience.InterfaceAudience;<a name="line.35"></a> -<span class="sourceLineNo">036</span>import org.apache.hadoop.hbase.rest.Constants;<a name="line.36"></a> -<span class="sourceLineNo">037</span>import org.apache.hadoop.hbase.rest.ProtobufMessageHandler;<a name="line.37"></a> -<span class="sourceLineNo">038</span><a name="line.38"></a> -<span class="sourceLineNo">039</span>/**<a name="line.39"></a> -<span class="sourceLineNo">040</span> * An adapter between Jersey and ProtobufMessageHandler implementors. Hooks up<a name="line.40"></a> -<span class="sourceLineNo">041</span> * protobuf output producing methods to the Jersey content handling framework.<a name="line.41"></a> -<span class="sourceLineNo">042</span> * Jersey will first call getSize() to learn the number of bytes that will be<a name="line.42"></a> -<span class="sourceLineNo">043</span> * sent, then writeTo to perform the actual I/O.<a name="line.43"></a> -<span class="sourceLineNo">044</span> */<a name="line.44"></a> -<span class="sourceLineNo">045</span>@Provider<a name="line.45"></a> -<span class="sourceLineNo">046</span>@Produces({Constants.MIMETYPE_PROTOBUF, Constants.MIMETYPE_PROTOBUF_IETF})<a name="line.46"></a> -<span class="sourceLineNo">047</span>@InterfaceAudience.Private<a name="line.47"></a> -<span class="sourceLineNo">048</span>public class ProtobufMessageBodyProducer<a name="line.48"></a> -<span class="sourceLineNo">049</span> implements MessageBodyWriter<ProtobufMessageHandler> {<a name="line.49"></a> -<span class="sourceLineNo">050</span><a name="line.50"></a> -<span class="sourceLineNo">051</span> @Override<a name="line.51"></a> -<span class="sourceLineNo">052</span> public boolean isWriteable(Class<?> type, Type genericType, <a name="line.52"></a> -<span class="sourceLineNo">053</span> Annotation[] annotations, MediaType mediaType) {<a name="line.53"></a> -<span class="sourceLineNo">054</span> return ProtobufMessageHandler.class.isAssignableFrom(type);<a name="line.54"></a> -<span class="sourceLineNo">055</span> }<a name="line.55"></a> -<span class="sourceLineNo">056</span><a name="line.56"></a> -<span class="sourceLineNo">057</span> @Override<a name="line.57"></a> -<span class="sourceLineNo">058</span> public long getSize(ProtobufMessageHandler m, Class<?> type, Type genericType,<a name="line.58"></a> -<span class="sourceLineNo">059</span> Annotation[] annotations, MediaType mediaType) {<a name="line.59"></a> -<span class="sourceLineNo">060</span> // deprecated by JAX-RS 2.0 and ignored by Jersey runtime<a name="line.60"></a> -<span class="sourceLineNo">061</span> return -1;<a name="line.61"></a> -<span class="sourceLineNo">062</span> }<a name="line.62"></a> -<span class="sourceLineNo">063</span><a name="line.63"></a> +<span class="sourceLineNo">022</span>import java.io.IOException;<a name="line.22"></a> +<span class="sourceLineNo">023</span>import java.io.OutputStream;<a name="line.23"></a> +<span class="sourceLineNo">024</span>import java.lang.annotation.Annotation;<a name="line.24"></a> +<span class="sourceLineNo">025</span>import java.lang.reflect.Type;<a name="line.25"></a> +<span class="sourceLineNo">026</span><a name="line.26"></a> +<span class="sourceLineNo">027</span>import javax.ws.rs.Produces;<a name="line.27"></a> +<span class="sourceLineNo">028</span>import javax.ws.rs.WebApplicationException;<a name="line.28"></a> +<span class="sourceLineNo">029</span>import javax.ws.rs.core.MediaType;<a name="line.29"></a> +<span class="sourceLineNo">030</span>import javax.ws.rs.core.MultivaluedMap;<a name="line.30"></a> +<span class="sourceLineNo">031</span>import javax.ws.rs.ext.MessageBodyWriter;<a name="line.31"></a> +<span class="sourceLineNo">032</span>import javax.ws.rs.ext.Provider;<a name="line.32"></a> +<span class="sourceLineNo">033</span><a name="line.33"></a> +<span class="sourceLineNo">034</span>import org.apache.hadoop.hbase.rest.Constants;<a name="line.34"></a> +<span class="sourceLineNo">035</span>import org.apache.hadoop.hbase.rest.ProtobufMessageHandler;<a name="line.35"></a> +<span class="sourceLineNo">036</span>import org.apache.yetus.audience.InterfaceAudience;<a name="line.36"></a> +<span class="sourceLineNo">037</span><a name="line.37"></a> +<span class="sourceLineNo">038</span>/**<a name="line.38"></a> +<span class="sourceLineNo">039</span> * An adapter between Jersey and ProtobufMessageHandler implementors. Hooks up<a name="line.39"></a> +<span class="sourceLineNo">040</span> * protobuf output producing methods to the Jersey content handling framework.<a name="line.40"></a> +<span class="sourceLineNo">041</span> * Jersey will first call getSize() to learn the number of bytes that will be<a name="line.41"></a> +<span class="sourceLineNo">042</span> * sent, then writeTo to perform the actual I/O.<a name="line.42"></a> +<span class="sourceLineNo">043</span> */<a name="line.43"></a> +<span class="sourceLineNo">044</span>@Provider<a name="line.44"></a> +<span class="sourceLineNo">045</span>@Produces({Constants.MIMETYPE_PROTOBUF, Constants.MIMETYPE_PROTOBUF_IETF})<a name="line.45"></a> +<span class="sourceLineNo">046</span>@InterfaceAudience.Private<a name="line.46"></a> +<span class="sourceLineNo">047</span>public class ProtobufMessageBodyProducer<a name="line.47"></a> +<span class="sourceLineNo">048</span> implements MessageBodyWriter<ProtobufMessageHandler> {<a name="line.48"></a> +<span class="sourceLineNo">049</span><a name="line.49"></a> +<span class="sourceLineNo">050</span> @Override<a name="line.50"></a> +<span class="sourceLineNo">051</span> public boolean isWriteable(Class<?> type, Type genericType, <a name="line.51"></a> +<span class="sourceLineNo">052</span> Annotation[] annotations, MediaType mediaType) {<a name="line.52"></a> +<span class="sourceLineNo">053</span> return ProtobufMessageHandler.class.isAssignableFrom(type);<a name="line.53"></a> +<span class="sourceLineNo">054</span> }<a name="line.54"></a> +<span class="sourceLineNo">055</span><a name="line.55"></a> +<span class="sourceLineNo">056</span> @Override<a name="line.56"></a> +<span class="sourceLineNo">057</span> public long getSize(ProtobufMessageHandler m, Class<?> type, Type genericType,<a name="line.57"></a> +<span class="sourceLineNo">058</span> Annotation[] annotations, MediaType mediaType) {<a name="line.58"></a> +<span class="sourceLineNo">059</span> // deprecated by JAX-RS 2.0 and ignored by Jersey runtime<a name="line.59"></a> +<span class="sourceLineNo">060</span> return -1;<a name="line.60"></a> +<span class="sourceLineNo">061</span> }<a name="line.61"></a> +<span class="sourceLineNo">062</span><a name="line.62"></a> +<span class="sourceLineNo">063</span> @Override<a name="line.63"></a> <span class="sourceLineNo">064</span> public void writeTo(ProtobufMessageHandler m, Class<?> type, Type genericType,<a name="line.64"></a> <span class="sourceLineNo">065</span> Annotation[] annotations, MediaType mediaType, <a name="line.65"></a> <span class="sourceLineNo">066</span> MultivaluedMap<String, Object> httpHeaders, OutputStream entityStream) <a name="line.66"></a> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/export_control.html ---------------------------------------------------------------------- diff --git a/export_control.html b/export_control.html index 6924406..25bbd2d 100644 --- a/export_control.html +++ b/export_control.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase – Export Control @@ -336,7 +336,7 @@ for more details.</p> <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-annotations/checkstyle.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/checkstyle.html b/hbase-annotations/checkstyle.html index 67025e7..04be400 100644 --- a/hbase-annotations/checkstyle.html +++ b/hbase-annotations/checkstyle.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Checkstyle Results</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -150,7 +150,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-annotations/dependencies.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/dependencies.html b/hbase-annotations/dependencies.html index a9bf3de..4f4326e 100644 --- a/hbase-annotations/dependencies.html +++ b/hbase-annotations/dependencies.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Project Dependencies</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -272,7 +272,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-annotations/dependency-convergence.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/dependency-convergence.html b/hbase-annotations/dependency-convergence.html index e5de370..523d288 100644 --- a/hbase-annotations/dependency-convergence.html +++ b/hbase-annotations/dependency-convergence.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Reactor Dependency Convergence</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -865,7 +865,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-annotations/dependency-info.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/dependency-info.html b/hbase-annotations/dependency-info.html index 3bbc30d..cd9dece 100644 --- a/hbase-annotations/dependency-info.html +++ b/hbase-annotations/dependency-info.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Dependency Information</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -147,7 +147,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-annotations/dependency-management.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/dependency-management.html b/hbase-annotations/dependency-management.html index 00cae95..921c0cc 100644 --- a/hbase-annotations/dependency-management.html +++ b/hbase-annotations/dependency-management.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Project Dependency Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -810,7 +810,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-annotations/index.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/index.html b/hbase-annotations/index.html index 9bc0597..f99dcb8 100644 --- a/hbase-annotations/index.html +++ b/hbase-annotations/index.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – About</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -119,7 +119,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-annotations/integration.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/integration.html b/hbase-annotations/integration.html index b3d6f28..4014011 100644 --- a/hbase-annotations/integration.html +++ b/hbase-annotations/integration.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – CI Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -126,7 +126,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-annotations/issue-tracking.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/issue-tracking.html b/hbase-annotations/issue-tracking.html index b343e2a..c1ab367 100644 --- a/hbase-annotations/issue-tracking.html +++ b/hbase-annotations/issue-tracking.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Issue Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -123,7 +123,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-annotations/license.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/license.html b/hbase-annotations/license.html index 2e8b9d0..ef5753b 100644 --- a/hbase-annotations/license.html +++ b/hbase-annotations/license.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Project Licenses</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -326,7 +326,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-annotations/mail-lists.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/mail-lists.html b/hbase-annotations/mail-lists.html index 9fff29f..9eaf3e8 100644 --- a/hbase-annotations/mail-lists.html +++ b/hbase-annotations/mail-lists.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Project Mailing Lists</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -176,7 +176,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-annotations/plugin-management.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/plugin-management.html b/hbase-annotations/plugin-management.html index 615f111..0737ce4 100644 --- a/hbase-annotations/plugin-management.html +++ b/hbase-annotations/plugin-management.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Project Plugin Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -271,7 +271,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-annotations/plugins.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/plugins.html b/hbase-annotations/plugins.html index 4f25bd1..49de4bd 100644 --- a/hbase-annotations/plugins.html +++ b/hbase-annotations/plugins.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Project Plugins</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -222,7 +222,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-annotations/project-info.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/project-info.html b/hbase-annotations/project-info.html index 1e7b9bb..4292aad 100644 --- a/hbase-annotations/project-info.html +++ b/hbase-annotations/project-info.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Project Information</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -167,7 +167,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-annotations/project-reports.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/project-reports.html b/hbase-annotations/project-reports.html index 5ac6e79..8228cd6 100644 --- a/hbase-annotations/project-reports.html +++ b/hbase-annotations/project-reports.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Generated Reports</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -128,7 +128,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-annotations/project-summary.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/project-summary.html b/hbase-annotations/project-summary.html index 8317ddd..71eabed 100644 --- a/hbase-annotations/project-summary.html +++ b/hbase-annotations/project-summary.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Project Summary</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -166,7 +166,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-annotations/source-repository.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/source-repository.html b/hbase-annotations/source-repository.html index 6b8fa11..c7f3e8e 100644 --- a/hbase-annotations/source-repository.html +++ b/hbase-annotations/source-repository.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Source Code Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -134,7 +134,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-annotations/team-list.html ---------------------------------------------------------------------- diff --git a/hbase-annotations/team-list.html b/hbase-annotations/team-list.html index 96c709d..1b56cd6 100644 --- a/hbase-annotations/team-list.html +++ b/hbase-annotations/team-list.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Annotations – Project Team</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -553,7 +553,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-build-configuration/dependencies.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/dependencies.html b/hbase-build-configuration/dependencies.html index 3a1ec35..e570bee 100644 --- a/hbase-build-configuration/dependencies.html +++ b/hbase-build-configuration/dependencies.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Build Configuration – Project Dependencies</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -330,7 +330,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-build-configuration/dependency-convergence.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/dependency-convergence.html b/hbase-build-configuration/dependency-convergence.html index 4608ff9..a217b28 100644 --- a/hbase-build-configuration/dependency-convergence.html +++ b/hbase-build-configuration/dependency-convergence.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Build Configuration – Reactor Dependency Convergence</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -865,7 +865,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-build-configuration/dependency-info.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/dependency-info.html b/hbase-build-configuration/dependency-info.html index 210573f..949cf46 100644 --- a/hbase-build-configuration/dependency-info.html +++ b/hbase-build-configuration/dependency-info.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Build Configuration – Dependency Information</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -148,7 +148,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-build-configuration/dependency-management.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/dependency-management.html b/hbase-build-configuration/dependency-management.html index dfaeaf5..ec2ec14 100644 --- a/hbase-build-configuration/dependency-management.html +++ b/hbase-build-configuration/dependency-management.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Build Configuration – Project Dependency Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -810,7 +810,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-build-configuration/hbase-archetypes/dependencies.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/dependencies.html b/hbase-build-configuration/hbase-archetypes/dependencies.html index 11adfb4..a853faf 100644 --- a/hbase-build-configuration/hbase-archetypes/dependencies.html +++ b/hbase-build-configuration/hbase-archetypes/dependencies.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetypes – Project Dependencies</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -330,7 +330,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-build-configuration/hbase-archetypes/dependency-convergence.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/dependency-convergence.html b/hbase-build-configuration/hbase-archetypes/dependency-convergence.html index 22651f8..3b424e6 100644 --- a/hbase-build-configuration/hbase-archetypes/dependency-convergence.html +++ b/hbase-build-configuration/hbase-archetypes/dependency-convergence.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetypes – Reactor Dependency Convergence</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -865,7 +865,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-build-configuration/hbase-archetypes/dependency-info.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/dependency-info.html b/hbase-build-configuration/hbase-archetypes/dependency-info.html index 975bd90..1c7af6a 100644 --- a/hbase-build-configuration/hbase-archetypes/dependency-info.html +++ b/hbase-build-configuration/hbase-archetypes/dependency-info.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetypes – Dependency Information</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -148,7 +148,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-build-configuration/hbase-archetypes/dependency-management.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/dependency-management.html b/hbase-build-configuration/hbase-archetypes/dependency-management.html index 49e20e6..8dc154e 100644 --- a/hbase-build-configuration/hbase-archetypes/dependency-management.html +++ b/hbase-build-configuration/hbase-archetypes/dependency-management.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetypes – Project Dependency Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -810,7 +810,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependencies.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependencies.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependencies.html index 75642ba..ce21c90 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependencies.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependencies.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – Project Dependencies</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -330,7 +330,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-convergence.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-convergence.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-convergence.html index 5a789db..d5f6d2f 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-convergence.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-convergence.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – Reactor Dependency Convergence</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -865,7 +865,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-info.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-info.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-info.html index ff33834..6473eaa 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-info.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-info.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – Dependency Information</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -148,7 +148,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-management.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-management.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-management.html index b5281bb..d2e4f9e 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-management.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-management.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – Project Dependency Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -810,7 +810,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/index.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/index.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/index.html index de59825..679ac62 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/index.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/index.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – About</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -119,7 +119,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/integration.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/integration.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/integration.html index 7f4fd5e..5fd8247 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/integration.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/integration.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – CI Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -126,7 +126,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/issue-tracking.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/issue-tracking.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/issue-tracking.html index bc4ec8f..7f220b3 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/issue-tracking.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/issue-tracking.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – Issue Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -123,7 +123,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/license.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/license.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/license.html index e4b84a4..3a872d9 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/license.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/license.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – Project Licenses</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -326,7 +326,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/mail-lists.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/mail-lists.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/mail-lists.html index a5559e7..8dc5779 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/mail-lists.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/mail-lists.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – Project Mailing Lists</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -176,7 +176,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugin-management.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugin-management.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugin-management.html index c4da2f1..f6b1211 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugin-management.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugin-management.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – Project Plugin Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -271,7 +271,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugins.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugins.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugins.html index 340d862..0b7537d 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugins.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugins.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – Project Plugins</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -214,7 +214,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-info.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-info.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-info.html index 582924f..6f72b72 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-info.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-info.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – Project Information</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -167,7 +167,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-summary.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-summary.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-summary.html index 32e021a..65c8fcc 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-summary.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-summary.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – Project Summary</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -163,7 +163,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/source-repository.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/source-repository.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/source-repository.html index aad2c14..6ea29de 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/source-repository.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/source-repository.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – Source Code Management</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -134,7 +134,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/team-list.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/team-list.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/team-list.html index c45462b..222a667 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/team-list.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/team-list.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Archetype builder – Project Team</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -553,7 +553,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-build-configuration/hbase-archetypes/hbase-client-project/checkstyle.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-client-project/checkstyle.html b/hbase-build-configuration/hbase-archetypes/hbase-client-project/checkstyle.html index 6e97036..2d7912e 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-client-project/checkstyle.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-client-project/checkstyle.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Exemplar for hbase-client archetype – Checkstyle Results</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -150,7 +150,7 @@ <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/96e5e102/hbase-build-configuration/hbase-archetypes/hbase-client-project/dependencies.html ---------------------------------------------------------------------- diff --git a/hbase-build-configuration/hbase-archetypes/hbase-client-project/dependencies.html b/hbase-build-configuration/hbase-archetypes/hbase-client-project/dependencies.html index 3fbe604..1fd8393 100644 --- a/hbase-build-configuration/hbase-archetypes/hbase-client-project/dependencies.html +++ b/hbase-build-configuration/hbase-archetypes/hbase-client-project/dependencies.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20180125" /> + <meta name="Date-Revision-yyyymmdd" content="20180126" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase - Exemplar for hbase-client archetype – Project Dependencies</title> <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" /> @@ -4144,7 +4144,7 @@ The following provides more details on the included cryptographic software: <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2018-01-25</li> + <li id="publishDate" class="pull-right">Last Published: 2018-01-26</li> </p> </div>
