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

net.sf.jrtps.udds.security.BinaryProperty Maven / Gradle / Ivy

There is a newer version: 1.5.1
Show newest version
package net.sf.jrtps.udds.security;

class BinaryProperty {
    private String name;
    private byte[] value;

    public BinaryProperty(String name, byte[] value) {
        this.name = name;
        this.value = value;
    }
    
    public String getName() {
        return name;
    }
    
    public byte[] getValue() {
        return value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy