Fissaggio quadri: come trovare montatori di mobili
Come Trovare Montatori di Mobili per Appendere Quadri
Come Affidarsi a Montatori di Mobili per Appendere Quadri.
Scopri come individuare i migliori montatori di mobili per appendere quadri in modo efficace e sicuro. Questo articolo offre suggerimenti utili e strategie per scegliere professionisti esperti, garantendo risultati ottimali per la tua casa. Ristrutturazioni, giardinaggio e progettazione edilizia sono i nostri punti di forza!
Trova professionisti vicino a te
Trova professionisti
/*
* Copyright 2013-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
package com.amazonaws.services.mediaconnect.model.transform;
import javax.annotation.Generated;
import com.amazonaws.SdkClientException;
import com.amazonaws.services.mediaconnect.model.*;
import com.amazonaws.protocol.*;
import com.amazonaws.annotation.SdkInternalApi;
/**
* UpdateFlowRequestMarshaller
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
@SdkInternalApi
public class UpdateFlowRequestMarshaller {
private static final MarshallingInfo FLOWARN_BINDING = MarshallingInfo.builder(MarshallingType.STRING).marshallLocation(MarshallLocation.PATH)
.marshallLocationName("flowArn").build();
private static final MarshallingInfo SOURCES_BINDING = MarshallingInfo.builder(MarshallingType.STRUCTURED)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("sources").build();
private static final MarshallingInfo DESTINATIONS_BINDING = MarshallingInfo.builder(MarshallingType.STRUCTURED)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("destinations").build();
private static final MarshallingInfo FLOWACTIVATIONLOCK_BINDING = MarshallingInfo.builder(MarshallingType.STRUCTURED)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("flowActivationLock").build();
private static final UpdateFlowRequestMarshaller instance = new UpdateFlowRequestMarshaller();
public static UpdateFlowRequestMarshaller getInstance() {
return instance;
}
/**
* Marshall the given parameter object.
*/
public void marshall(UpdateFlowRequest updateFlowRequest, ProtocolMarshaller protocolMarshaller) {
if (updateFlowRequest == null) {
throw new SdkClientException("Invalid argument passed to marshall(...)");
}
try {
protocolMarshaller.marshall(updateFlowRequest.getFlowArn(), FLOWARN_BINDING);
protocolMarshaller.marshall(updateFlowRequest.getSources(), SOURCES_BINDING);
protocolMarshaller.marshall(updateFlowRequest.getDestinations(), DESTINATIONS_BINDING);
protocolMarshaller.marshall(updateFlowRequest.getFlowActivationLock(), FLOWACTIVATIONLOCK_BINDING);
} catch (Exception e) {
throw new SdkClientException("Unable to marshall request to JSON: " + e.getMessage(), e);
}
}
}