All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jfinal.wxaapp.WxaConfig Maven / Gradle / Ivy

/**
 * Copyright (c) 2011-2014, L.cm 卢春梦 ([email protected]).
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 */

package com.jfinal.wxaapp;

import com.jfinal.wxaapp.msg.IMsgParser;

import java.io.Serializable;

/**
 * 微信小程序配置
 * @author L.cm
 *
 */
public class WxaConfig implements Serializable {
    private static final long serialVersionUID = 8274925821039698118L;

    private String appId = null;
    private String appSecret = null;
    private String token = null;
    private String encodingAesKey = null;
    private boolean messageEncrypt = false;    // 消息加密与否
    private IMsgParser msgParser = null;

    public String getAppId() {
        return appId;
    }
    public void setAppId(String appId) {
        this.appId = appId;
    }
    public String getAppSecret() {
        return appSecret;
    }
    public void setAppSecret(String appSecret) {
        this.appSecret = appSecret;
    }
    public String getToken() {
        return token;
    }
    public void setToken(String token) {
        this.token = token;
    }
    public String getEncodingAesKey() {
        return encodingAesKey;
    }
    public void setEncodingAesKey(String encodingAesKey) {
        this.encodingAesKey = encodingAesKey;
    }
    public boolean isMessageEncrypt() {
        return messageEncrypt;
    }
    public void setMessageEncrypt(boolean messageEncrypt) {
        this.messageEncrypt = messageEncrypt;
    }

    /**
     * 设置该小程序号的消息解析器为json
     */
    public void useJsonMsgParser(){
        this.msgParser = WxaConfigKit.MSG_PARSER_JSON;
    }

    public void useXmlMsgParser(){
        this.msgParser = WxaConfigKit.MSG_PARSER_XML;
    }

    public IMsgParser getMsgParser() {
        return msgParser;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy