// Decompiled by Jad v1.5.8e. Copyright 2001 Pavel Kouznetsov. // Jad home page: http://www.geocities.com/kpdus/jad.html // Decompiler options: braces fieldsfirst space lnc package com.olio.communication.actions; // Referenced classes of package com.olio.communication.actions: // ActionBuilder, WebAction, Action public class WebActionBuilder extends ActionBuilder { private WebAction mWebAction; public WebActionBuilder() { mWebAction = new WebAction(); } public WebActionBuilder addHeader(String s, String s1) { getAction().addHeader(s, s1); return this; } public WebAction build() { return mWebAction; } protected volatile Action getAction() { return getAction(); } protected WebAction getAction() { return mWebAction; } protected volatile ActionBuilder getThis() { return getThis(); } protected WebActionBuilder getThis() { return this; } public WebActionBuilder setHttpVerb(WebAction.HttpVerb httpverb) { getAction().setHttpVerb(httpverb); return this; } public WebActionBuilder setPayload(String s) { getAction().setPayload(s); return this; } public WebActionBuilder setUrl(String s) { getAction().setUrl(s); return this; } }