sdk/host/src/main/java/org/apache/teaclave/javasdk/host/MockEnclaveInfo.java [31:60]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        this.enclaveType = enclaveType;
        this.isEnclaveDebuggable = isEnclaveDebuggable;
        this.enclaveEPCMemorySizeBytes = enclaveEPCMemorySizeBytes;
        this.enclaveMaxThreadsNumber = enclaveMaxThreadsNumber;
        this.enclaveID = this.hashCode();
    }

    @Override
    public EnclaveType getEnclaveType() {
        return this.enclaveType;
    }

    @Override
    public int getEnclaveID() {
        return this.enclaveID;
    }

    @Override
    public boolean isEnclaveDebuggable() {
        return this.isEnclaveDebuggable;
    }

    @Override
    public long getEnclaveEPCMemorySizeBytes() {
        return this.enclaveEPCMemorySizeBytes;
    }

    @Override
    public int getEnclaveMaxThreadsNumber() {
        return this.enclaveMaxThreadsNumber;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



sdk/host/src/main/java/org/apache/teaclave/javasdk/host/SGXEnclaveInfo.java [31:60]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        this.enclaveType = enclaveType;
        this.isEnclaveDebuggable = isEnclaveDebuggable;
        this.enclaveEPCMemorySizeBytes = enclaveEPCMemorySizeBytes;
        this.enclaveMaxThreadsNumber = enclaveMaxThreadsNumber;
        this.enclaveID = this.hashCode();
    }

    @Override
    public EnclaveType getEnclaveType() {
        return this.enclaveType;
    }

    @Override
    public int getEnclaveID() {
        return this.enclaveID;
    }

    @Override
    public boolean isEnclaveDebuggable() {
        return this.isEnclaveDebuggable;
    }

    @Override
    public long getEnclaveEPCMemorySizeBytes() {
        return this.enclaveEPCMemorySizeBytes;
    }

    @Override
    public int getEnclaveMaxThreadsNumber() {
        return this.enclaveMaxThreadsNumber;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



