blob: 9847d8b4f723d11f418b252aae504d6e441e70ff [file] [log] [blame]
/*
* Copyright (c) 2020 Kentyou.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Kentyou - initial API and implementation
*/
package org.eclipse.sensinact.gateway.nthbnd.endpoint;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import org.json.JSONArray;
public class AttributeSubscribeRequest extends AttributeRequest {
private NorthboundRecipient recipient;
private JSONArray conditions;
private String policy;
private Argument[] extraArguments;
/**
* @param mediator
* @param serviceProvider
* @param service
* @param resource
* @param attribute
* @param recipient
*/
public AttributeSubscribeRequest(NorthboundMediator mediator, String requestIdentifier,
String serviceProvider, String service, String resource, String attribute,
NorthboundRecipient recipient, JSONArray conditions, String policy,
Argument[] extraArguments) {
super(mediator, requestIdentifier, serviceProvider, service, resource, attribute);
this.recipient = recipient;
this.conditions = conditions;
this.policy = policy;
this.extraArguments = extraArguments;
if (this.recipient == null)
throw new NullPointerException("Recipient missing");
}
@Override
protected Argument[] getExecutionArguments() {
int offset = this.extraArguments == null?0:this.extraArguments.length;
Argument[] superArguments = super.getExecutionArguments();
int length = superArguments == null ? 0 : superArguments.length;
Argument[] arguments = new Argument[length + offset + 3];
if (length > 0)
System.arraycopy(superArguments, 0, arguments, 0, length);
arguments[length] = new Argument(NorthboundRecipient.class, this.recipient);
arguments[length + 1] = new Argument(JSONArray.class, this.conditions);
arguments[length + 2] = new Argument(String.class, this.policy);
if (offset > 0)
System.arraycopy(this.extraArguments, 0, arguments, length+3, offset);
return arguments;
}
@Override
protected String getMethod() {
return "subscribe";
}
}