
com.activitystream.aspects.ClientIPAddressAspect Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk Show documentation
Show all versions of sdk Show documentation
For a description please see https://github.com/activitystream/as-sdk-java
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