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

com.activitystream.aspects.ClientIPAddressAspect Maven / Gradle / Ivy

Go to download

For a description please see https://github.com/activitystream/as-sdk-java

There is a newer version: 0.5.8
Show newest version
package com.activitystream.aspects;

public class ClientIPAddressAspect extends AspectBase {
    public ClientIPAddressAspect() {
        aspectPropertyMap.put("client_ip", new AspectProperty(IsRequired.True));
    }

    public ClientIPAddressAspect clientIp(String ipAddress) {
        aspectPropertyMap.get("client_ip").value = ipAddress;
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy