module-info
This commit is contained in:
@@ -22,6 +22,7 @@ module org.redkale {
|
||||
exports org.redkale.convert.bson;
|
||||
exports org.redkale.convert.ext;
|
||||
exports org.redkale.convert.json;
|
||||
exports org.redkale.convert.protobuf;
|
||||
exports org.redkale.mq;
|
||||
exports org.redkale.net;
|
||||
exports org.redkale.net.client;
|
||||
|
||||
@@ -1,28 +0,0 @@
|
||||
/*
|
||||
* To change this license header, choose License Headers in Project Properties.
|
||||
* To change this template file, choose Tools | Templates
|
||||
* and open the template in the editor.
|
||||
*/
|
||||
package org.redkale.convert.protobuf;
|
||||
|
||||
import org.redkale.annotation.Priority;
|
||||
import org.redkale.convert.*;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author zhangjx
|
||||
*/
|
||||
@Priority(-900)
|
||||
public class ProtobufConvertProvider implements ConvertProvider {
|
||||
|
||||
@Override
|
||||
public ConvertType type() {
|
||||
return ConvertType.PROTOBUF;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Convert convert() {
|
||||
return ProtobufConvert.root();
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user